Read the partial implementation of BinarySearchTree.java. Much of the implementation is provided for you.
Begin by completing the implementation of the contains() method.
Then replace your hash table with a binary search tree and test your revised
text editor. You can also test your binary search tree using
BinarySearchTreeTester.java.
successor()
and predecessor() methods in the binary search tree class. When
suggestions are requested, find the successor and predecessor of the word, and
suggest both of them to the user. If one of them does not exist, make only
one suggestion.
remove() method.