meldable-heap-1.1.2: Asymptotically optimal, Coq-verified meldable heaps, AKA priority queues

Data.MeldableHeap

Description

A heap is a container supporting the insertion of elements and the extraction of the minimum element. This library models the implementation of asymptotically optimal purely functional heaps given by Brodal and Okasaki in their paper "Optimal Purely Functional Priority Queues". The Coq proof assistant has been used to prove this implementation correct. The proofs are available in the Cabal package or at http://code.google.com/p/priority-queues/.

Synopsis

Documentation

type PQ = BootWrap IntegerSource

empty :: Ord a => PQ aSource

insert :: Ord a => a -> PQ a -> PQ aSource

insert (O(1)) adds an element to a heap.

findMin :: Ord a => PQ a -> Maybe aSource

findMin (O(1)) returns the minimum element of a nonempty heap.

extractMin :: Ord a => PQ a -> Maybe (a, PQ a)Source

extractMin (O(lg n)) returns (if the heap is nonempty) a pair containing the minimum element and a heap that contains all of the other elements. It does not remove copies of the minimum element if some exist in the heap.

meld :: Ord a => PQ a -> PQ a -> PQ aSource

meld (O(1)) joins two heaps P and Q into a heap containing exactly the elements in P and Q. It does not remove duplicates.

toList :: Ord a => PQ a -> [a]Source

toList (O(n)) returns a list of the elements in the heap in some arbitrary order.