MaxHeap

struct MaxHeap<T> : Heap where T : Comparable

A MaxHeap using iterative heapify methods.

Note

The datatype in the Heap must conform to Comparable.