// 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 Set { void add(E value); boolean contains(E value); boolean isEmpty(); void remove(E value); int size(); }