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