interface SearchStructure { void insert(Object o); //stick into search structure void delete(Object o); //remove objects equal to o from search structure boolean search(Object o); int size(); }