Uses of Class
zombie.core.utils.FibonacciHeap.Entry

Packages that use FibonacciHeap.Entry
zombie.core.utils   
 

Uses of FibonacciHeap.Entry in zombie.core.utils
 

Methods in zombie.core.utils that return FibonacciHeap.Entry
 FibonacciHeap.Entry<T> FibonacciHeap.dequeueMin()
          Dequeues and returns the minimum element of the Fibonacci heap.
 FibonacciHeap.Entry<T> FibonacciHeap.enqueue(T value, double priority)
          Inserts the specified element into the Fibonacci heap with the specified priority.
 FibonacciHeap.Entry<T> 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.Entry
 void 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.