// CSE 373, Winter 2013, Marty Stepp // IntSet is an ADT interface describing a collection storing unique integers // (no duplicates) with fast add, search (contains), and remove operations. public interface IntSet { void add(int value); boolean contains(int value); boolean isEmpty(); void remove(int value); int size(); }