ex10_08.cpp

来自「This rar contains code from every chapte」· C++ 代码 · 共 41 行

CPP
41
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?