gpt4 book ai didi

Java TreeMap时间复杂度-lowerKey

转载 作者:行者123 更新时间:2023-12-01 18:14:07 26 4
gpt4 key购买 nike

TreeMap 的 Java 实现中 lowerKey() 操作的时间复杂度是多少?

我认为它是 log(n) 但我在文档中找不到它。

更基本操作的复杂性已有详细记录:

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

顺便说一句:我也对 subMap() 的复杂性感兴趣。我猜想 lowerKey() 的 log(n) 复杂度将允许 log(n) 时间用于恒定大小 subMap()

最佳答案

lowerKey()是平衡二叉搜索树中的搜索,因此显然是O(log n)。您可能想阅读源代码,例如来自here ,看看树是如何遍历的。

类似地,从 subMap() 返回的 NavigableMap 的每个操作也需要 O(log n),因为您需要遍历树来查找您想要的元素。

关于Java TreeMap时间复杂度-lowerKey,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30767130/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com