LinkedBinarySearchTree

Classwork/Homework:

  1. The LinkedBinarySearchTree class is currently using the find and contains methods of the LinkedBinaryTree class. Implement these methods for the LinkedBinarySearchTree class so that they will be more efficient by making use of the ordering property of a binary search tree.
  2. Implement the removeMax, findMin, and findMax operations for our linked binary search tree implementation.
  3. Implement the removeMax, findMin, and findMax operations for our array binary search tree implementation.