package rebelsky.linear; /** * Priority queues. Linear structures with the "highest-priority * first" policy. * * @author Samuel A. Rebelsky * @version 1.0 of March 2006 */ public interface PriorityQueue extends LinearStructure { /* The body of this interface is intentionally left empty, as priority queues have no methods that linear structures lack. */ } // interface PriorityQueue