C++ Primer(第5版) 练习 11.23
练习 11.23 11.2.1节练习(第378页)中的map以孩子的姓为关键字,保存他们的名的vector,用multimap重写此map。
环境:Linux Ubuntu(云服务器)
工具:vim
代码块
/*************************************************************************
> File Name: ex11.23.cpp
> Author:
> Mail:
> Created Time: Sun 07 Apr 2024 12:03:23 PM CST
************************************************************************/
#include<iostream>
#include<vector>
#include<map>
#include<set>
#include<algorithm>
using namespace std;
int main(){
multimap<string, string> home;
string lastName, firstName;
cout<<"Enter Name:"<<endl;
while(cin>>firstName>>lastName){
home.emplace(lastName, firstName);
}
cout<<endl;
cout<<"Name List:"<<endl;
for(const auto h : home){
cout<<h.second<<" "<<h.first<<endl;
}
return 0;
}