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.
在描述中,它只说“此实现为基本操作(添加、删除和包含)提供有保证的 log(n) 时间成本”。
我相信higher() 也是log(n)。要找到较高的元素,请找到将输入插入到 Higher() 的位置,然后“向上”移动一个,从而产生 log(n) 时间。
如果您遍历元素,您正在查看 n 时间。如果您使用 contains 访问每个购买的元素,那么您正在查看 n log(n) 时间。