Take out a piece of paper and put your name on the upper right corner.

public class BinarySearchTree<E> {
  private E[] treeData;
  private Comparator<E> c;

  public E find(E item) {
   // your code
  }

}

Time remaining: