TreeSet icon indicating copy to clipboard operation
TreeSet copied to clipboard

Python Binary-Tree set like java Treeset.

Results 3 TreeSet issues
Sort by recently updated
recently updated
newest added

From your implementation code, https://github.com/fukatani/TreeSet/blob/5e24a515148c9cc2947b392518413a76b9885453/treeset.py#L67 I believe you're using Python `list` built-in `remove` method to remove an element. The time complexity of this method is `O(n)`. However, Java `TreeSet.remove()` is...

* Fixes #1. Returns `None` since the Java equivalent returns `null` * Due to Python indexing, if the `floor()` of a TreeSet does not exist, the last element of the...

Fails when a value for ceilng is greater than any value in tree ``` a = TreeSet([int(x) for x in '903485034580236']) a.ceiling(100) ```