public class test { public static void main(String [] args) { Table t = new ListTable(); t.put("b","bar"); t.put("a","foo"); t.put("c","boing"); t.put("b","flip"); check(t,"a"); check(t,"b"); check(t,"c"); check(t,"d"); // t.put("e","x"); t.remove("b"); check(t,"a"); check(t,"b"); check(t,"c"); check(t,"d"); } private static void check(Table t, String key) { System.out.println("get("+key+")="+t.get(key)); } }