Subversion Repositories Code-Repo

Rev

Rev 94 | Blame | Compare with Previous | Last modification | View Log | RSS feed

import java.util.ArrayList;

// Generic dictionary interface
public 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);
}