// CSE 373, Winter 2013, Marty Stepp // Set is an ADT interface describing a collection storing unique element values // (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(); }