CSSE 230: AVL Trees - Part 2
- Work on this project by yourself.
- Continue work on the AVLTreeProject.
- Add a recursive remove() method. Ensure that it throws
the same exceptions as the one from BinarySearchTrees. Furthermore, ensure
that the recursion takes place in the BinaryNode class and that it
runs in O(log(n)) time.
- Please remove the remove() methods from both iterators.