Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
那么,找到一个 key 需要 O(height) 时间,需要多少时间才能找到所有 key 大于给定 key 的节点?什么是常数因子?
如果正确完成,您可能会找到密钥,然后按顺序转到下一个。
所以它将是 O(logn) + m 。其中 m 是大于密钥的错误数。 最坏的情况是 O(logn) + n = O(n)