```AbstractBST``` implements the ```MutableSet``` abstract base class, and so usage of implementations of ```AbstractBST``` is the same as the built in python `set`. There are pros and cons to using a Tree implementation of a set, as opposed to the built in hash set. The main advantage is that the **keys are maintained in a sorted order**, allowing them to be returned in sorted order in O(n) time. On the downside, the standard operations of add, contains, and remove are O(log(n)), as opposed to the O(1) achieved by a hash set. An unbalanced tree implementation (like the BST example above) could even take O(n) time on these basic operations. Balanced trees, such as Red-Black Trees ensure the operations are always O(log(n)).
0 commit comments