previous | start | next

BinarySearchTree Class print Method

public class BinarySearchTree
{
   . . .
   public void print()
   {
      if (root != null)
         root.printNodes();
   }
   . . .
}

previous | start | next