MinHeap

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

A MinHeap using iterative heapify methods.

Note

The datatype in the Heap must conform to Comparable.