module Heap: sig
.. end
heap structures
exception OVERFLOW
thrown if a heap exceeds its maximum size.
module type OrderedType = sig
.. end
Input signature of the heap functors.
module Heap:
The classic imperative array based heap data structure.
module MinMaxHeap:
An imperative array based min-max heap data structure.