CPlusPlusThings/modern_C++_30/container2/priority_queue.cpp
Light-City 7de0e1a865 update
2019-12-17 21:14:10 +08:00

30 lines
619 B
C++

//
// Created by light on 19-12-16.
//
#include <functional> // std::greater
#include <iostream> // std::cout/endl
#include <memory> // std::pair
#include <queue> // std::priority_queue
#include <vector> // std::vector
#include "../container1/output_container.h"
using namespace std;
int main()
{
priority_queue<
pair<int, int>,
vector<pair<int, int>>,
greater<pair<int, int>>>
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();
}
}