package rebelsky.exam3; /** * Linear structures that implement the "smallest first" protocol. * That is, get removes and returns the smallest value in the queue. * "Smallest" may be determined by internal comparison of objects * (comparables) or by an external comparator. * * @author Samuel A. Rebelsky * @version 1.0 of November 2005 */ public interface PriorityQueue extends LinearStructure { } // interface PriorityQueue