import structure.*; import com.mw.io.*; class BTSearchDriver { // A program that builds a binary search tree of n integers, searches for // an integer in the tree, and displays the elapsed time in milliseconds // for the search. public static void main (String args[]) { SystemInput sysIn = new SystemInput(); BinarySearchTree data = new BinarySearchTree(); ReadStream r = new ReadStream(); System.out.println("Enter an integer for the tree size:"); int n = r.readInt(); for (int i=0; i