Practice: Binary Search Trees
Take out a piece of paper. We’ll be programming on paper.
Problem 1
- Implement the find(E e) method for a Binary Search Tree. Use the Comparator<E> c to determine the order.
- You should use a recursive helper method.
Show me your code before you leave