📄 ex10_08.cpp
字号:
// Ex10_08.cpp
// Exercising a priority queue container
#include <iostream>
#include <queue>
#include "Person.h"
using std::cin;
using std::cout;
using std::endl;
using std::priority_queue;
int main()
{
priority_queue<Person> people;
string first, second;;
while(true)
{
cout << "Enter a first name or press Enter to end: " ;
getline(cin, first);
if(first.empty())
break;
cout << "Enter a second name: " ;
getline(cin, second);
people.push(Person(first, second));
}
cout << endl << "There are " << people.size()
<< " people in the queue."
<< endl << endl;
cout << "The names that you entered are:" << endl;
while(!people.empty())
{
people.top().showPerson();
people.pop();
}
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -