输入n个单词,统计各个单词出现的个数
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <iostream>
#include <map>
#include <string>
using namespace std;
int main()
{
map<string, int > k;
string word;
while (cin>>word)
++k[word];
for (map<string, int >::iterator i=k.begin();i!=k.end();i++)
cout<<(*i).first<< "\t" <<(*i).second<<endl;
return 0;
}
|
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://blog.csdn.net/wtyvhreal/article/details/42625109