public class FixedCapacityIntFloatMinHeap extends Object implements Int2FloatMapEntryIterable
Constructor and Description |
---|
FixedCapacityIntFloatMinHeap(int capacity)
Initialize the heap with desired capacity
|
Modifier and Type | Method and Description |
---|---|
void |
add(int key,
float value)
Add a key value pair
|
void |
clear()
Clear the heap
|
protected int |
compare(int key1,
float value1,
int key2,
float value2)
Comapre two (key, value) entries
|
void |
forEachIntFloat(IntFloatConsumer f)
Traverse all elements of the heap, calling given function on each element.
|
boolean |
forEachWhileIntFloat(IntFloatPredicate f)
Traverse all elements of the heap, calling given function on each element,
or until predicate returns false.
|
int |
getCapacity()
Get capacity of the heap
|
int |
getMinKey() |
float |
getMinValue() |
boolean |
isEmpty()
Check if the heap is empty
|
it.unimi.dsi.fastutil.objects.ObjectIterator<it.unimi.dsi.fastutil.ints.Int2FloatMap.Entry> |
iterator()
Get the iterator.
|
static FixedCapacityIntFloatMinHeap |
read(FixedCapacityIntFloatMinHeap heap,
DataInput in)
Deserializes an object from data input.
|
void |
removeMin()
Removes the (key, value) pair that corresponds to the minimum value
currently in the heap.
|
int |
size()
Get the size of this iterable
|
static void |
write(FixedCapacityIntFloatMinHeap heap,
DataOutput out)
Serializes an object into data output.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public FixedCapacityIntFloatMinHeap(int capacity)
capacity
- Capacitypublic void clear()
public void add(int key, float value)
key
- Keyvalue
- Valuepublic int getMinKey()
NoSuchElementException
- if the heap is empty.public float getMinValue()
NoSuchElementException
- if the heap is empty.public void removeMin()
protected int compare(int key1, float value1, int key2, float value2)
key1
- First keyvalue1
- First valuekey2
- Second keyvalue2
- Second valuepublic it.unimi.dsi.fastutil.objects.ObjectIterator<it.unimi.dsi.fastutil.ints.Int2FloatMap.Entry> iterator()
Int2FloatMapEntryIterable
iterator
in interface it.unimi.dsi.fastutil.objects.ObjectIterable<it.unimi.dsi.fastutil.ints.Int2FloatMap.Entry>
iterator
in interface Iterable<it.unimi.dsi.fastutil.ints.Int2FloatMap.Entry>
iterator
in interface Int2FloatMapEntryIterable
public int size()
Int2FloatMapEntryIterable
size
in interface Int2FloatMapEntryIterable
public boolean isEmpty()
public int getCapacity()
public static void write(FixedCapacityIntFloatMinHeap heap, DataOutput out) throws IOException
heap
- Object instance to serializeout
- Data outputIOException
public static FixedCapacityIntFloatMinHeap read(FixedCapacityIntFloatMinHeap heap, DataInput in) throws IOException
heap
- Object to reuse if possiblein
- Data inputIOException
public void forEachIntFloat(IntFloatConsumer f)
f
- Function to call on each element.public boolean forEachWhileIntFloat(IntFloatPredicate f)
f
- Function to call on each element.Copyright © 2011-2020 The Apache Software Foundation. All Rights Reserved.