// // Created by light on 19-12-16. // #include "../container1/output_container.h" #include // std::greater #include // std::cout/endl #include // std::pair #include // std::priority_queue #include // std::vector using namespace std; int main() { priority_queue, vector>, greater>> q; q.push({1, 1}); q.push({2, 2}); q.push({0, 3}); q.push({9, 4}); while (!q.empty()) { cout << q.top() << endl; q.pop(); } }