public interface SeqStructure { // Inserts comparable object obj into the structure: void put(Object obj); // Extracts the biggest object from the structure: Object get(); // Checks whether the structure is empty: boolean isEmpty(); // Returns the number of items stored in the structure: int size(); }