To familiarize yourself with a basic binary tree implementation, do the following:
package jss2;
is the first line in each file).
You do not have to implement iteratorLevelOrder -- instead, have it throw an UnsupportedOperationException. So the body of the iteratorLevelOrder method will just be
throw new UnsupportedOperationException()
Use TestBT to test your tree code. You can comment out code you're not ready to test as suggested above, but otherwise do not modify the code in TestBT! If it doesn't work correctly, there's something wrong with your LinkedBinaryTree class -- that's what you should fix.