This method returns the root element of a MinHeap.
MinHeap
smallest = aMinHeap$peekMin()
peekMin returns the root element of the MinHeap in question, or NULL if the MinHeap is empty.
peekMin
NULL
John Hughes