import structure5.*; class BSTTest { public static void main(String[] args) { ImplicitBinarySearchTree root = new ImplicitBinarySearchTree<>(); root.add("BillL",100); root.add("Steve",1000); root.add("Jeannie",10000); root.add("Iris",10); root.add("Tom",100); root.add("Aaron",1000); root.add("Shikha",1234); root.add("Sam",4311); root.add("Kelly",4354325); root.add("Andrea",4355); root.add("Duane",8764539); root.add("BillJ",2345); root.add("Dan",1); System.out.println(root); ComparableAssociation balance = root.get("Dan"); System.out.println("Dan has " + balance.getValue() + " dollars in his bank account."); } }