|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--websphinx.util.PriorityQueue
Priority queue. Objects stored in a priority queue must implement the Prioritized interface.
Field Summary | |
private java.util.Vector |
q
|
Constructor Summary | |
PriorityQueue()
Make an empty PriorityQueue. |
|
PriorityQueue(int initialCapacity)
Make an empty PriorityQueue with an initial capacity. |
Method Summary | |
void |
clear()
Remove all objects from queue. |
boolean |
delete(Prioritized x)
Delete an object from queue. |
(package private) void |
deleteElement(int i)
|
java.lang.Object |
deleteMin()
Get and delete the object with lowest priority. |
static void |
dump(PriorityQueue q)
|
java.util.Enumeration |
elements()
Enumerate the objects in the queue, in no particular order |
boolean |
empty()
Test whether queue is empty. |
java.lang.Object |
getMin()
Get object with lowest priority from queue. |
(package private) float |
getPriority(int i)
|
(package private) void |
heapify(int i)
|
static void |
main(java.lang.String[] args)
|
void |
put(Prioritized x)
Put an object on the queue. |
int |
size()
Get number of objects in queue. |
(package private) void |
swap(int i,
int j)
|
void |
update()
Rebuild priority queuein case the priorities of its elements have changed since they were inserted. |
Methods inherited from class java.lang.Object |
|
Field Detail |
private java.util.Vector q
Constructor Detail |
public PriorityQueue()
public PriorityQueue(int initialCapacity)
initialCapacity
- number of elements initially allocated in queueMethod Detail |
public void put(Prioritized x)
x
- object to put on the queuepublic java.lang.Object getMin()
public java.lang.Object deleteMin()
public boolean delete(Prioritized x)
x
- object to deletepublic void clear()
public java.util.Enumeration elements()
public int size()
public boolean empty()
public void update()
final void deleteElement(int i)
final void heapify(int i)
final void swap(int i, int j)
final float getPriority(int i)
public static void main(java.lang.String[] args)
public static void dump(PriorityQueue q)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |