CSSE 230: Binary Search Tree Exercise - Part 2
This is the second part of a three part assignment.
Please work on this exercise by yourself.
For this portion, you will focus on ways of navigating a tree
through tree iterators.
- Continue working on the BinarySearchTree.java file that you edited
as part of BST - part 1
- Ensure that the iterators are inner classes and that your code
takes advantage of the access rights that come with inner classes.
- Add the following iterators. Ensure the iterators are lazy
and invoke them with the following methods:
- iterator()
- descendingIterator()
- preOrderIterator()
- levelOrderIterator()
- Use appropriate iterators to implement the following methods:
- toArray()
- toString()
- Use the following JUnit test suite to
test your code. I adjusted some of the points to accomidate some new
features. I will eventually add some more testcase for the removal
portion that we will see in part 3.