This program illustrates the use of the STL push_heap() algorithm (default version) to add a value to a (maximum) heap of integers. Press Enter to continue ... Here are the values in the vector (the heap): 36 19 25 17 3 7 1 2 Press Enter to continue ... Now we add the value 100 to the heap. Press Enter to continue ... Here are the revised contents of the vector (the new heap): 100 36 25 19 3 7 1 2 17 Press Enter to continue ...