|
@@ -2,6 +2,7 @@
|
|
|
#include <queue> // priority_queue
|
|
|
#include <utility> // pair
|
|
|
#include <functional> // greater
|
|
|
+#include <limits>
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
@@ -18,6 +19,7 @@ int main() {
|
|
|
pqInt.push(0);
|
|
|
pqInt.push(42);
|
|
|
pqInt.push(3);
|
|
|
+ pqInt.push(numeric_limits<int>::max());
|
|
|
|
|
|
while (!pqInt.empty()) {
|
|
|
cout << pqInt.top() << " > ";
|