
public class DoubleMaxHeap extends Object implements DoubleHeap
| Modifier and Type | Class and Description |
|---|---|
private class |
DoubleMaxHeap.UnsortedIter
Unsorted iterator - in heap order.
|
| Modifier and Type | Field and Description |
|---|---|
private static int |
FOUR_HEAP_INITIAL_SIZE
Initial size of 4-ary heap when initialized.
21 = 4-ary heap of height 2: 1 + 4 + 4*4
85 = 4-ary heap of height 3: 21 + 4*4*4
341 = 4-ary heap of height 4: 85 + 4*4*4*4
Since we last grew by 255 (to 511), let's use 341.
|
protected double[] |
fourheap
Extension heap.
|
protected int |
modCount
(Structural) modification counter.
|
protected int |
size
Current size of heap.
|
private static int |
TWO_HEAP_INITIAL_SIZE
Initial size of the 2-ary heap.
|
private static int |
TWO_HEAP_MAX_SIZE
Maximum size of the 2-ary heap.
|
protected double[] |
twoheap
Base heap.
|
| Constructor and Description |
|---|
DoubleMaxHeap()
Constructor, with default size.
|
DoubleMaxHeap(int minsize)
Constructor, with given minimum size.
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(double o)
Add a key-value pair to the heap
|
void |
add(double key,
int max)
Add a key-value pair to the heap, except if the new element is larger than
the top, and we are at design size (overflow)
|
void |
clear()
Delete all elements from the heap.
|
private void |
heapifyDown(double reinsert)
Invoke heapify-down for the root object.
|
private void |
heapifyDown2(int twopos,
double cur)
Heapify-Down for 2-ary heap.
|
private void |
heapifyDown4(int fourpos,
double cur)
Heapify-Down for 4-ary heap.
|
private void |
heapifyUp2(int twopos,
double cur)
Heapify-Up method for 2-ary heap.
|
private void |
heapifyUp4(int fourpos,
double cur)
Heapify-Up method for 4-ary heap.
|
boolean |
isEmpty()
Is the heap empty?
|
double |
peek()
Get the current top key
|
double |
poll()
Remove the first element
|
double |
replaceTopElement(double reinsert)
Combined operation that removes the top element, and inserts a new element
instead.
|
int |
size()
Query the size
|
String |
toString() |
DoubleMaxHeap.UnsortedIter |
unsortedIter()
Get an unsorted iterator to inspect the heap.
|
protected double[] twoheap
protected double[] fourheap
protected int size
protected int modCount
private static final int TWO_HEAP_MAX_SIZE
private static final int TWO_HEAP_INITIAL_SIZE
private static final int FOUR_HEAP_INITIAL_SIZE
public DoubleMaxHeap()
public DoubleMaxHeap(int minsize)
minsize - Minimum sizepublic void clear()
DoubleHeapclear in interface DoubleHeappublic int size()
DoubleHeapsize in interface DoubleHeappublic boolean isEmpty()
DoubleHeapisEmpty in interface DoubleHeaptrue when the size is 0.public void add(double o)
DoubleHeapadd in interface DoubleHeapo - Keypublic void add(double key,
int max)
DoubleHeapadd in interface DoubleHeapkey - Keymax - Maximum size of heappublic double replaceTopElement(double reinsert)
DoubleHeapreplaceTopElement in interface DoubleHeapreinsert - New element to insertprivate void heapifyUp2(int twopos,
double cur)
twopos - Position in 2-ary heap.cur - Current objectprivate void heapifyUp4(int fourpos,
double cur)
fourpos - Position in 4-ary heap.cur - Current objectpublic double poll()
DoubleHeappoll in interface DoubleHeapprivate void heapifyDown(double reinsert)
reinsert - Object to insert.private void heapifyDown2(int twopos,
double cur)
twopos - Position in 2-ary heap.cur - Current objectprivate void heapifyDown4(int fourpos,
double cur)
fourpos - Position in 4-ary heap.cur - Current objectpublic double peek()
DoubleHeappeek in interface DoubleHeappublic DoubleMaxHeap.UnsortedIter unsortedIter()
DoubleHeapunsortedIter in interface DoubleHeap