C++ Primer(第5版) 练习 11.9
练习 11.9 定义一个map,将单词与一个行号的list关联,list中保存的是单词所出现的行号。
环境:Linux Ubuntu(云服务器)
工具:vim
代码块
/*************************************************************************
> File Name: ex11.9.cpp
> Author:
> Mail:
> Created Time: Wed 03 Apr 2024 08:59:10 AM CST
************************************************************************/
#include<iostream>
#include<list>
#include<map>
#include<string>
using namespace std;
int main(){
map<string, list<int>> words;
list<int> num = {1, 2, 3, 4, 5, 6};
string word = "compare";
for(const auto n : num){
words[word].push_back(n);
}
cout<<"words Line"<<endl;
for(const auto w: words){
for(const auto l : w.second){
cout<<w.first<<" "<<l<<endl;
}
}
return 0;
}