Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
import java.util.ArrayList;// Generic dictionary interfacepublic interface Dictionary<Key, Element> {public void insert(Key k, Element e);public void clear();public void remove(Key k);public Element find(Key k);public ArrayList<Element> findAll(Key k);}