MaxHeap

public struct MaxHeap<T> : Heap where T : Comparable

A MaxHeap using iterative heapify methods.

Note

MaxHeap conforms to Heap

Note

The datatype in the Heap must conform to Comparable.