![]() |
|
Navigation |
Synopsis A
PriorityQueue datatype and associated functions.
Usage
import util::PriorityQueue;
Description Priority queues maintain (priority, value) pairs in sorted order. They are implemented using a
Binomial Heap
![]() Provides the following functions:
Pitfalls Currently, both priority and associated value ("payload") have to be integers. This will be generalized.
![]() |