Given a heap aHeapI, return its smallest element, i.e the one at the root. aHeapI is not modified by this function.
aHeapI
the heap to consider
the minimal value inside aHeapI
Given a heap
aHeapI
, return its smallest element, i.e the one at the root.aHeapI
is not modified by this function.