Array based BinarySearchTree Practice Quiz

Practice Problem

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

  public boolean insert(E item) {
   // your code
  }

}

Time Remaining:

You can restart the timer by reloading the page.

Try to complete the problem in 15 minutes.

If you cannot complete the program in 15 minutes, you can watch me solve the problem in a text editor.