|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.AbstractCollection<E> org.apache.commons.collections.buffer.PriorityBuffer<E>
public class PriorityBuffer<E>
Binary heap implementation of Buffer
that provides for
removal based on Comparator
ordering.
Comparator
. The
remove()
method always returns the first element as determined
by the sort order. (The ascendingOrder
flag in the constructors
can be used to reverse the sort order, in which case remove()
will always remove the last element.) The removal order is
not the same as the order of iteration; elements are
returned by the iterator in no particular order.
The add(Object)
and remove()
operations perform
in logarithmic time. The get()
operation performs in constant
time. All other operations perform in linear time or worse.
Note that this implementation is not synchronized. Use
BufferUtils.synchronizedBuffer(Buffer)
or
SynchronizedBuffer.decorate(Buffer)
to provide synchronized access to a PriorityBuffer
:
Buffer heap = SynchronizedBuffer.decorate(new PriorityBuffer());
Field Summary | |
---|---|
protected boolean |
ascendingOrder
If true, the first element as determined by the sort order will be returned. |
protected Comparator<? super E> |
comparator
The comparator used to order the elements |
protected E[] |
elements
The elements in this buffer. |
protected int |
size
The number of elements currently in this buffer. |
Constructor Summary | |
---|---|
PriorityBuffer()
Constructs a new empty buffer that sorts in ascending order by the natural order of the objects added. |
|
PriorityBuffer(boolean ascendingOrder)
Constructs a new empty buffer specifying the sort order and using the natural order of the objects added. |
|
PriorityBuffer(boolean ascendingOrder,
Comparator<? super E> comparator)
Constructs a new empty buffer specifying the sort order and comparator. |
|
PriorityBuffer(Comparator<? super E> comparator)
Constructs a new empty buffer that sorts in ascending order using the specified comparator. |
|
PriorityBuffer(int capacity)
Constructs a new empty buffer that sorts in ascending order by the natural order of the objects added, specifying an initial capacity. |
|
PriorityBuffer(int capacity,
boolean ascendingOrder)
Constructs a new empty buffer that specifying initial capacity and sort order, using the natural order of the objects added. |
|
PriorityBuffer(int capacity,
boolean ascendingOrder,
Comparator<? super E> comparator)
Constructs a new empty buffer that specifying initial capacity, sort order and comparator. |
|
PriorityBuffer(int capacity,
Comparator<? super E> comparator)
Constructs a new empty buffer that sorts in ascending order using the specified comparator and initial capacity. |
Method Summary | |
---|---|
boolean |
add(E element)
Adds an element to the buffer. |
void |
clear()
Clears all elements from the buffer. |
Comparator<? super E> |
comparator()
Gets the comparator being used for this buffer, null is natural order. |
protected int |
compare(E a,
E b)
Compares two objects using the comparator if specified, or the natural order otherwise. |
E |
get()
Gets the next element to be removed without actually removing it (peek). |
protected void |
grow()
Increases the size of the heap to support additional elements |
boolean |
isAscendingOrder()
Checks whether the heap is ascending or descending order. |
protected boolean |
isAtCapacity()
Tests if the buffer is at capacity. |
Iterator<E> |
iterator()
Returns an iterator over this heap's elements. |
protected void |
percolateDownMaxHeap(int index)
Percolates element down heap from the position given by the index. |
protected void |
percolateDownMinHeap(int index)
Percolates element down heap from the position given by the index. |
protected void |
percolateUpMaxHeap(E element)
Percolates a new element up heap from the bottom. |
protected void |
percolateUpMaxHeap(int index)
Percolates element up heap from from the position given by the index. |
protected void |
percolateUpMinHeap(E element)
Percolates a new element up heap from the bottom. |
protected void |
percolateUpMinHeap(int index)
Percolates element up heap from the position given by the index. |
E |
remove()
Gets and removes the next element (pop). |
int |
size()
Returns the number of elements in this buffer. |
String |
toString()
Returns a string representation of this heap. |
Methods inherited from class java.util.AbstractCollection |
---|
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.Collection |
---|
addAll, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, toArray, toArray |
Field Detail |
---|
protected E[] elements
protected int size
protected boolean ascendingOrder
protected Comparator<? super E> comparator
Constructor Detail |
---|
public PriorityBuffer()
public PriorityBuffer(Comparator<? super E> comparator)
comparator
- the comparator used to order the elements,
null means use natural orderpublic PriorityBuffer(boolean ascendingOrder)
ascendingOrder
- if true
the heap is created as a
minimum heap; otherwise, the heap is created as a maximum heappublic PriorityBuffer(boolean ascendingOrder, Comparator<? super E> comparator)
ascendingOrder
- true to use the order imposed by the given
comparator; false to reverse that ordercomparator
- the comparator used to order the elements,
null means use natural orderpublic PriorityBuffer(int capacity)
capacity
- the initial capacity for the buffer, greater than zero
IllegalArgumentException
- if capacity
is <= 0
public PriorityBuffer(int capacity, Comparator<? super E> comparator)
capacity
- the initial capacity for the buffer, greater than zerocomparator
- the comparator used to order the elements,
null means use natural order
IllegalArgumentException
- if capacity
is <= 0
public PriorityBuffer(int capacity, boolean ascendingOrder)
capacity
- the initial capacity for the buffer, greater than zeroascendingOrder
- if true
the heap is created as a
minimum heap; otherwise, the heap is created as a maximum heap.
IllegalArgumentException
- if capacity
is <= 0
public PriorityBuffer(int capacity, boolean ascendingOrder, Comparator<? super E> comparator)
capacity
- the initial capacity for the buffer, greater than zeroascendingOrder
- true to use the order imposed by the given
comparator; false to reverse that ordercomparator
- the comparator used to order the elements,
null means use natural order
IllegalArgumentException
- if capacity
is <= 0
Method Detail |
---|
public boolean isAscendingOrder()
public Comparator<? super E> comparator()
public int size()
size
in interface Collection<E>
size
in class AbstractCollection<E>
public void clear()
clear
in interface Collection<E>
clear
in class AbstractCollection<E>
public boolean add(E element)
add
in interface Collection<E>
add
in class AbstractCollection<E>
element
- the element to be added
public E get()
get
in interface Buffer<E>
BufferUnderflowException
- if the buffer is emptypublic E remove()
remove
in interface Buffer<E>
BufferUnderflowException
- if the buffer is emptyprotected boolean isAtCapacity()
true
if buffer is full; false
otherwise.protected void percolateDownMinHeap(int index)
index
- the index for the elementprotected void percolateDownMaxHeap(int index)
index
- the index of the elementprotected void percolateUpMinHeap(int index)
index
- the index of the element to be percolated upprotected void percolateUpMinHeap(E element)
element
- the elementprotected void percolateUpMaxHeap(int index)
index
- the index of the element to be percolated upprotected void percolateUpMaxHeap(E element)
element
- the elementprotected int compare(E a, E b)
a
- the first objectb
- the second object
protected void grow()
public Iterator<E> iterator()
iterator
in interface Iterable<E>
iterator
in interface Collection<E>
iterator
in class AbstractCollection<E>
public String toString()
toString
in class AbstractCollection<E>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |