
public class TableDemo {

	
	public static void main(String[] args) {
		Table t = new EmptyBSTree();
		t = t.put("Eric", 39);
		t = t.put("Bill", 21);
		t = t.put("Jill", 9);
		t = t.put("XHugh", 50);
		
		System.out.println(t.get("Eric"));
		System.out.println(t.get("Hugh"));
		System.out.println(t.show());
		
		

	}

}

