码迷,mamicode.com
首页 > 其他好文 > 详细

华为机试—统计单词个数(map)

时间:2015-01-12 09:22:23      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:华为机试   统计单词个数   map   

输入n个单词,统计各个单词出现的个数

#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;
}

技术分享

华为机试—统计单词个数(map)

标签:华为机试   统计单词个数   map   

原文地址:http://blog.csdn.net/wtyvhreal/article/details/42625109

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!