TreeMap - 搜索时间复杂度

发布于 2024-09-02 05:50:02 字数 62 浏览 5 评论 0原文

TreeMap 中 get() 和 put() 的时间复杂度是多少?

实现方式和红黑树一样吗?

What is the time complexity of a get() and put() in a TreeMap?

Is the implementation same as a Red-Black Tree?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

脱离于你 2024-09-09 05:50:02

从这里: http://java.sun.com/ javase/6/docs/api/java/util/TreeMap.html

这个实现提供了
保证 log(n) 时间成本
containsKey、获取、放置和删除
操作

From here: http://java.sun.com/javase/6/docs/api/java/util/TreeMap.html

This implementation provides
guaranteed log(n) time cost for the
containsKey, get, put and remove
operations

等你爱我 2024-09-09 05:50:02

树形图是:

基于红黑树的 NavigableMap 实现。

此实现为 containsKey、get、put 和 remove 操作提供有保证的 log(n) 时间成本。算法改编自 Cormen、Leiserson 和 Rivest 的《算法简介》中的算法。

TreeMap is:

A Red-Black tree based NavigableMap implementation.

This implementation provides guaranteed log(n) time cost for the containsKey, get, put and remove operations. Algorithms are adaptations of those in Cormen, Leiserson, and Rivest's Introduction to Algorithms.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文