|
© 1998-2002 McGraw-Hill | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object | +--structure.VectorHeap
This class implements a priority queue based on a traditional array-based heap. Most heap operations, including insert and remove, execute in logarithmic time, but the minimum element can be returned in constant time.
Example usage:
To print out a list of programmers sorted by age we could use the following:
public static void main(String[] argv){
//initialize a new fib heap
VectorHeap programmers = new VectorHeap();
//add programmers and their ages to heap
//ages current of 7/22/2002
//add programmers and their ages to heap
//ages current of 7/22/2002
programmers.add(new ComparableAssociation(new Integer(22), "Evan"));
programmers.add(new ComparableAssociation(new Integer(19), "Chris"));
programmers.add(new ComparableAssociation(new Integer(20), "Shimon"));
programmers.add(new ComparableAssociation(new Integer(21), "Diane"));
programmers.add(new ComparableAssociation(new Integer(21), "Lida"));
programmers.add(new ComparableAssociation(new Integer(20), "Rob"));
programmers.add(new ComparableAssociation(new Integer(20), "Sean"));
//print out programmers
while(!programmers.isEmpty()){
ComparableAssociation p = (ComparableAssociation)programmers.remove();
System.out.println(p.getValue() + " is " + p.getKey() + " years old.");
}
}
| Field Summary | |
protected Vector |
data
The data, kept in heap order. |
| Constructor Summary | |
VectorHeap()
Construct a new priority queue |
|
VectorHeap(Vector v)
Construct a new priority queue from an unordered vector |
|
| Method Summary | |
void |
add(Comparable value)
Add a value to the priority queue. |
void |
clear()
Remove all the elements from the queue. |
Comparable |
getFirst()
Fetch lowest valued (highest priority) item from queue. |
boolean |
isEmpty()
Determine if the queue is empty. |
protected static int |
left(int i)
Returns left child index. |
protected static int |
parent(int i)
Returns parent index |
protected void |
percolateUp(int leaf)
Moves node upward to appropriate position within heap. |
protected void |
pushDownRoot(int root)
Moves node downward, into appropriate position within subheap. |
Comparable |
remove()
Returns the minimum value from the queue. |
protected static int |
right(int i)
Returns right child index. |
int |
size()
Determine the size of the queue. |
String |
toString()
Construct a string representation of the heap. |
| Methods inherited from class java.lang.Object |
|
| Field Detail |
protected Vector data
| Constructor Detail |
public VectorHeap()
public VectorHeap(Vector v)
| Method Detail |
protected static int parent(int i)
i - a node indexprotected static int left(int i)
i - a node indexprotected static int right(int i)
i - a node indexpublic Comparable getFirst()
getFirst in interface PriorityQueuepublic Comparable remove()
remove in interface PriorityQueuepublic void add(Comparable value)
add in interface PriorityQueuevalue - The value to be added.public boolean isEmpty()
isEmpty in interface PriorityQueueprotected void percolateUp(int leaf)
leaf - Index of the node in the heap.protected void pushDownRoot(int root)
root - Index of the root of the subheap.public int size()
size in interface PriorityQueuepublic void clear()
clear in interface PriorityQueuepublic String toString()
toString in class Object
|
© 1998-2002 McGraw-Hill | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||