TreeSet.remove 的时间复杂度为 O(log N)。

huangapple go评论59阅读模式
英文:

Why is TreeSet.remove's time complexity O(in N)?

问题

一个树集已经排序了... 那为什么通过二分搜索删除一个对象的时间复杂度不是 O(Log N) 呢?我是不是漏掉了什么?

英文:

A treeset is already sorted... so why isn't the time complexity to remove an object O(Log N) through binary search? Am I missing something?

答案1

得分: 1

根据TreeSet的Java文档,它的时间复杂度是O(log N)。

英文:

It is O(log N) according to the JavaDocs for TreeSet:

> This implementation provides guaranteed log(n) time cost for the basic
> operations (add, remove and contains).

huangapple
  • 本文由 发表于 2023年2月10日 14:55:51
  • 转载请务必保留本文链接:https://go.coder-hub.com/75407820.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定