Class BinaryHeap<E>
- Type Parameters:
E- element class.
- All Implemented Interfaces:
Iterable<E>,Collection<E>,Queue<E>,CapacityManagement,SmartCollection<E>,SmartDynamicPriorityQueue<E>,SmartPriorityQueue<E>
PriorityQueue implementation using a binary heap.-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedBinaryHeap(int initCapacity, Collection<? extends E> initValues, Comparator<? super E> comparator) protectedBinaryHeap(int initialCapacity, Comparator<? super E> comparator) -
Method Summary
Modifier and TypeMethodDescriptionstatic <E extends Comparable<E>>
BinaryHeap<E>create()static <E extends Comparable<E>>
BinaryHeap<E>create(int initialCapacity) static <E extends Comparable<E>>
BinaryHeap<E>create(int initialCapacity, Collection<? extends E> initValues) static <E extends Comparable<E>>
BinaryHeap<E>create(Collection<? extends E> initValues) static <E> BinaryHeap<E>createCmp(Comparator<? super E> comparator) static <E> BinaryHeap<E>createCmp(Comparator<? super E> comparator, int initialCapacity) static <E> BinaryHeap<E>createCmp(Comparator<? super E> comparator, int initialCapacity, Collection<? extends E> initValues) static <E> BinaryHeap<E>createCmp(Comparator<? super E> comparator, Collection<? extends E> initValues) voidThoroughly clears the collection, fixing all issues that may have been caused by a call of the aboveSmartCollection.quickClear().element()booleanensureAdditionalCapacity(int additionalCapacity) Ensures that the internal storage has room for at least the provided number of additional elements.booleanensureCapacity(int minCapacity) Ensures that the internal storage has room for at least the provided number of elements.Retrieves and removes the element with the minimum key in the priority queue.get(ElementReference ref) Retrieves an element by its reference.voidhintNextCapacity(int nextCapacityHint) Gives a hint regarding the capacity that should be reserved when resizing the internal storage for the next time.voidkeyChanged(int index) voidNotifies the implementation that the key of an element has changed.booleanpeek()peekMin()Retrieves, but does not remove the element with the minimum key in the priority queue.poll()voidQuickly clears this collection.referencedAdd(E elem) Adds an element to the collection, returning a reference to the newly added element.Retrieves an iterator for iterating over the references of elements in this collection.remove()voidremove(ElementReference ref) Removes an element (by its reference) from the collection.voidreplace(ElementReference ref, E newElement) Replaces the element referenced by the given reference with the specified element.intsize()Methods inherited from class net.automatalib.common.smartcollection.AbstractSmartCollection
add, addAll, addAll, choose, chooseRef, find, iterator, references, removeMethods inherited from class java.util.AbstractCollection
addAll, clear, contains, containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, parallelStream, removeAll, removeIf, retainAll, spliterator, stream, toArray, toArray, toArrayMethods inherited from interface net.automatalib.common.smartcollection.SmartCollection
addAll, addAll, choose, chooseRef, find, references, remove
-
Constructor Details
-
BinaryHeap
protected BinaryHeap(int initCapacity, Collection<? extends E> initValues, Comparator<? super E> comparator) -
BinaryHeap
-
-
Method Details
-
create
-
create
-
create
-
create
public static <E extends Comparable<E>> BinaryHeap<E> create(int initialCapacity, Collection<? extends E> initValues) -
createCmp
-
createCmp
-
createCmp
public static <E> BinaryHeap<E> createCmp(Comparator<? super E> comparator, Collection<? extends E> initValues) -
createCmp
public static <E> BinaryHeap<E> createCmp(Comparator<? super E> comparator, int initialCapacity, Collection<? extends E> initValues) -
size
public int size()- Specified by:
sizein interfaceCollection<E>- Specified by:
sizein classAbstractCollection<E>
-
get
Description copied from interface:SmartCollectionRetrieves an element by its reference.If the reference belongs to another collection, the behavior is undefined.
- Specified by:
getin interfaceSmartCollection<E>- Parameters:
ref- the element's reference.- Returns:
- the element.
-
referencedAdd
Description copied from interface:SmartCollectionAdds an element to the collection, returning a reference to the newly added element. If the collection does not support containing the same element multiple times, a reference to the previously existing element is returned.- Specified by:
referencedAddin interfaceSmartCollection<E>- Parameters:
elem- the element to be added.- Returns:
- a reference to this element in the collection.
-
remove
Description copied from interface:SmartCollectionRemoves an element (by its reference) from the collection.If the reference does not belong to this collection, the behavior is undefined.
- Specified by:
removein interfaceSmartCollection<E>- Parameters:
ref- the reference to the element to be removed.
-
remove
-
referenceIterator
Description copied from interface:SmartCollectionRetrieves an iterator for iterating over the references of elements in this collection.- Specified by:
referenceIteratorin interfaceSmartCollection<E>- Returns:
- the reference iterator.
-
replace
Description copied from interface:SmartCollectionReplaces the element referenced by the given reference with the specified element.- Specified by:
replacein interfaceSmartCollection<E>- Parameters:
ref- the reference of the element to be replaced.newElement- the replacement.
-
keyChanged
Description copied from interface:SmartDynamicPriorityQueueNotifies the implementation that the key of an element has changed.- Specified by:
keyChangedin interfaceSmartDynamicPriorityQueue<E>- Parameters:
ref- the reference for the element whose key has changed.
-
keyChanged
public void keyChanged(int index) -
ensureCapacity
public boolean ensureCapacity(int minCapacity) Description copied from interface:CapacityManagementEnsures that the internal storage has room for at least the provided number of elements.- Specified by:
ensureCapacityin interfaceCapacityManagement- Parameters:
minCapacity- the minimal number of elements the storage should have room for.- Returns:
trueiff the internal storage had to be resized,falseotherwise.
-
ensureAdditionalCapacity
public boolean ensureAdditionalCapacity(int additionalCapacity) Description copied from interface:CapacityManagementEnsures that the internal storage has room for at least the provided number of additional elements.Calling this method is equivalent to calling the above
CapacityManagement.ensureCapacity(int)with an argument ofsize() + additionalCapacity.- Specified by:
ensureAdditionalCapacityin interfaceCapacityManagement- Parameters:
additionalCapacity- the number of additional elements the storage should have room for.- Returns:
trueiff the internal storage had to be resized,falseotherwise.
-
hintNextCapacity
public void hintNextCapacity(int nextCapacityHint) Description copied from interface:CapacityManagementGives a hint regarding the capacity that should be reserved when resizing the internal storage for the next time. This method acts like a "lazy"CapacityManagement.ensureCapacity(int), i.e. it reserves the specified capacity at the time the next resizing of the internal storage is performed.This method is useful when a not too imprecise upper bound on the elements that will in consequence be added is known. Since the actual number of elements added may be lower than the specified upper bound, a resizing that would have been performed by
CapacityManagement.ensureCapacity(int)might not be necessary.- Specified by:
hintNextCapacityin interfaceCapacityManagement- Parameters:
nextCapacityHint- the next capacity hint.
-
quickClear
public void quickClear()Description copied from interface:SmartCollectionQuickly clears this collection. This method is supposed to perform the minimum amount of effort such that this collection is emptied, disregarding all other side effects such as referencing or garbage collection issues.Depending on the implementation, this may be just the same as
Collection.clear(). However, this could also have side effects like hampering the garbage collection or such.After calling this method, even a call of the normal
Collection.clear()is not guaranteed to fix all these issues. This can only be achieved by the methodSmartCollection.deepClear()below.- Specified by:
quickClearin interfaceSmartCollection<E>- Overrides:
quickClearin classAbstractSmartCollection<E>
-
deepClear
public void deepClear()Description copied from interface:SmartCollectionThoroughly clears the collection, fixing all issues that may have been caused by a call of the aboveSmartCollection.quickClear().- Specified by:
deepClearin interfaceSmartCollection<E>- Overrides:
deepClearin classAbstractSmartCollection<E>
-
offer
-
poll
-
element
-
peekMin
Description copied from interface:SmartPriorityQueueRetrieves, but does not remove the element with the minimum key in the priority queue. If there are several elements with minimal key values, one of them is chosen arbitrarily.- Specified by:
peekMinin interfaceSmartPriorityQueue<E>- Returns:
- an element with a minimal key.
-
extractMin
Description copied from interface:SmartPriorityQueueRetrieves and removes the element with the minimum key in the priority queue. If there are several elements with minimal key values, one of them is chosen arbitrarily.- Specified by:
extractMinin interfaceSmartPriorityQueue<E>- Returns:
- the element with the previously minimal key.
-
peek
-