// CSE 373, Winter 2013, Marty Stepp // This interface defines an ADT for priority queues of integers // that allow fast access/removal of the minimum element. public interface IntPriorityQueue { void add(int value); void clear(); boolean isEmpty(); int peek(); int remove(); int size(); }