BST 和 LinkedList 都属于动态数据结构 BSTSet 和 LinkedListSet 时间复杂度对比(h 为二分搜索树的高度) LinkedListSet BSTSet 最优 平均 最差(二分搜索树退化为线性链表时) 增 add O(n) O(h) O(logn) O(logn) O(n) 查 isContains O(n) O(h) O(logn) O(logn) O(n) 删 remove
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected