package dataStructures; public interface OrderedDictionary, V> extends Dictionary { // Returns the entry with the smallest key in the dictionary. Entry minEntry( ) throws EmptyDictionaryException; // Returns the entry with the largest key in the dictionary. Entry maxEntry( ) throws EmptyDictionaryException; // Returns an iterator of the entries in the dictionary // which preserves the key order relation. // Iterator> iterator( ); }