All Packages Class Hierarchy This Package Previous Next Index
Interface tw.edu.ncnu.im.cnclab.DataStru.PriorityQueue
- public interface PriorityQueue
Protocol for priority queues.
- Author:
- Origional from Mark Allen Weiss , modified by Ding-Yi Chen on Mar 5, 1999.
-
deleteMin()
- Remove the smallest item from the priority queue.
-
findMin()
- Find the smallest item in the priority queue.
-
insert(Comparable11)
- Insert into the priority queue.
-
isEmpty()
- Test if the priority queue is logically empty.
-
makeEmpty()
- Make the priority queue logically empty.
-
toss(Comparable11)
- Insert into the priority queue quickly, ignore the PriorityQueue validity
Duplicates are allowed.
-
validate()
- Validate the priority queue.
insert
public abstract void insert(Comparable11 x)
- Insert into the priority queue.
Duplicates are allowed.
- Parameters:
- x - the item to insert.
findMin
public abstract Comparable11 findMin() throws Underflow
- Find the smallest item in the priority queue.
- Returns:
- the smallest item.
- Throws: Underflow
- if the priority queue is empty.
deleteMin
public abstract Comparable11 deleteMin() throws Underflow
- Remove the smallest item from the priority queue.
- Throws: Underflow
- if the priority queue is empty.
isEmpty
public abstract boolean isEmpty()
- Test if the priority queue is logically empty.
- Returns:
- true if empty, false otherwise.
makeEmpty
public abstract void makeEmpty()
- Make the priority queue logically empty.
toss
public abstract void toss(Comparable11 x)
- Insert into the priority queue quickly, ignore the PriorityQueue validity
Duplicates are allowed.
- Parameters:
- x - the item to insert.
validate
public abstract void validate()
- Validate the priority queue.
All Packages Class Hierarchy This Package Previous Next Index