V
- Value typepublic class IntegerObjectMaxHeap<V> extends Object implements IntegerObjectHeap<V>
Modifier and Type | Class and Description |
---|---|
private class |
IntegerObjectMaxHeap.UnsortedIter
Unsorted iterator - in heap order.
|
Modifier and Type | Field and Description |
---|---|
protected int |
size
Current size of heap.
|
private static int |
TWO_HEAP_INITIAL_SIZE
Initial size of the 2-ary heap.
|
protected int[] |
twoheap
Base heap.
|
protected Object[] |
twovals
Base heap values.
|
Constructor and Description |
---|
IntegerObjectMaxHeap()
Constructor, with default size.
|
IntegerObjectMaxHeap(int minsize)
Constructor, with given minimum size.
|
Modifier and Type | Method and Description |
---|---|
void |
add(int o,
V v)
Add a key-value pair to the heap
|
void |
add(int key,
V val,
int max)
Add a key-value pair to the heap if it improves the top.
|
void |
clear()
Clear the heap contents.
|
private void |
heapifyDown(int cur,
Object val)
Invoke heapify-down for the root object.
|
private void |
heapifyUp(int twopos,
int cur,
Object val)
Heapify-Up method for 2-ary heap.
|
boolean |
isEmpty()
Is the heap empty?
|
int |
peekKey()
Get the current top key
|
V |
peekValue()
Get the current top value
|
void |
poll()
Remove the first element
|
void |
replaceTopElement(int reinsert,
V val)
Combined operation that removes the top element, and inserts a new element
instead.
|
int |
size()
Query the size
|
String |
toString() |
IntegerObjectMaxHeap.UnsortedIter |
unsortedIter()
Get an unsorted iterator to inspect the heap.
|
protected int[] twoheap
protected Object[] twovals
protected int size
private static final int TWO_HEAP_INITIAL_SIZE
public IntegerObjectMaxHeap()
public IntegerObjectMaxHeap(int minsize)
minsize
- Minimum sizepublic void clear()
IntegerObjectHeap
clear
in interface IntegerObjectHeap<V>
public int size()
IntegerObjectHeap
size
in interface IntegerObjectHeap<V>
public boolean isEmpty()
IntegerObjectHeap
isEmpty
in interface IntegerObjectHeap<V>
true
when the size is 0.public void add(int o, V v)
IntegerObjectHeap
add
in interface IntegerObjectHeap<V>
o
- Keyv
- Valuepublic void add(int key, V val, int max)
IntegerObjectHeap
add
in interface IntegerObjectHeap<V>
key
- Keyval
- Valuemax
- Desired maximum sizepublic void replaceTopElement(int reinsert, V val)
IntegerObjectHeap
replaceTopElement
in interface IntegerObjectHeap<V>
reinsert
- Key of new elementval
- Value of new elementprivate void heapifyUp(int twopos, int cur, Object val)
twopos
- Position in 2-ary heap.cur
- Current objectval
- Current valuepublic void poll()
IntegerObjectHeap
poll
in interface IntegerObjectHeap<V>
private void heapifyDown(int cur, Object val)
cur
- Object to insert.val
- Value to reinsert.public int peekKey()
IntegerObjectHeap
peekKey
in interface IntegerObjectHeap<V>
public V peekValue()
IntegerObjectHeap
peekValue
in interface IntegerObjectHeap<V>
public IntegerObjectMaxHeap.UnsortedIter unsortedIter()
IntegerObjectHeap
unsortedIter
in interface IntegerObjectHeap<V>
Copyright © 2015 ELKI Development Team, Lehr- und Forschungseinheit für Datenbanksysteme, Ludwig-Maximilians-Universität München. License information.