Quartz::FibonacciHeap(T)
Inherits Quartz::PriorityQueue / Reference / Object
Event set implemented as a Fibonacci Heap, as described by Fredman and Tarjan.
Structured as a collection of root trees that are min-heap ordered, and internally represented as a circular, doubly-linked list.
Constructors
new
SourceInstance methods
delete(priority : Duration, value : T) : T
Sourceinspect(io)
Sourcenext_priority
Sourcepeek
Sourcepeek?
Sourcepush(priority : Duration, value : T)
Insert the given value with the specified priority into self..