Package org.apache.lucene.util
Class PriorityQueue<T>
java.lang.Object
org.apache.lucene.util.PriorityQueue<T>
- Direct Known Subclasses:
FieldValueHitQueue
,Lookup.LookupPriorityQueue
,SuggestWordQueue
,TopOrdAndFloatQueue
,TopOrdAndIntQueue
A PriorityQueue maintains a partial ordering of its elements such that the
least element can always be found in constant time. Put()'s and pop()'s
require log(size) time.
NOTE: This class will pre-allocate a full array of
length maxSize+1
if instantiated via the
PriorityQueue(int,boolean)
constructor with
prepopulate
set to true
.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal T
Adds an Object to a PriorityQueue in log(size) time.final void
clear()
Removes all entries from the PriorityQueue.insertWithOverflow
(T element) Adds an Object to a PriorityQueue in log(size) time.final T
pop()
Removes and returns the least element of the PriorityQueue in log(size) time.final int
size()
Returns the number of elements currently stored in the PriorityQueue.final T
top()
Returns the least element of the PriorityQueue in constant time.final T
Should be called when the Object at top changes values.
-
Constructor Details
-
PriorityQueue
public PriorityQueue(int maxSize) -
PriorityQueue
public PriorityQueue(int maxSize, boolean prepopulate)
-
-
Method Details
-
add
Adds an Object to a PriorityQueue in log(size) time. If one tries to add more objects than maxSize from initialize anArrayIndexOutOfBoundsException
is thrown.- Returns:
- the new 'top' element in the queue.
-
insertWithOverflow
Adds an Object to a PriorityQueue in log(size) time. It returns the object (if any) that was dropped off the heap because it was full. This can be the given parameter (in case it is smaller than the full heap's minimum, and couldn't be added), or another object that was previously the smallest value in the heap and now has been replaced by a larger one, or null if the queue wasn't yet full with maxSize elements. -
top
Returns the least element of the PriorityQueue in constant time. -
pop
Removes and returns the least element of the PriorityQueue in log(size) time. -
updateTop
Should be called when the Object at top changes values. Still log(n) worst case, but it's at least twice as fast topq.top().change(); pq.updateTop();
instead ofo = pq.pop(); o.change(); pq.push(o);
- Returns:
- the new 'top' element.
-
size
public final int size()Returns the number of elements currently stored in the PriorityQueue. -
clear
public final void clear()Removes all entries from the PriorityQueue.
-