Uses of Class
zombie.core.utils.FibonacciHeap.Entry
Packages that use FibonacciHeap.Entry
-
Uses of FibonacciHeap.Entry in zombie.core.utils
Methods in zombie.core.utils that return FibonacciHeap.EntryModifier and TypeMethodDescriptionFibonacciHeap.dequeueMin()
Dequeues and returns the minimum element of the Fibonacci heap.FibonacciHeap.min()
Returns an Entry object corresponding to the minimum element of the Fibonacci heap, throwing a NoSuchElementException if the heap is empty.Methods in zombie.core.utils with parameters of type FibonacciHeap.EntryModifier and TypeMethodDescriptionvoid
FibonacciHeap.decreaseKey
(FibonacciHeap.Entry<T> entry, double newPriority) Decreases the key of the specified element to the new priority.void
FibonacciHeap.delete
(FibonacciHeap.Entry<T> entry) Deletes this Entry from the Fibonacci heap that contains it.