PQ -- findMin ( )

findMin ( ) returns the root


template <class Comparable> const Comparable & BinaryHeap<Comparable>:: finMin ( ) { if ( isEmpty ( ) ) throw UnderFlow ( ); return array [ 1 ]; }