首页 > 编程 > C > 正文

华为机试题之统计单词个数实例代码

2020-01-26 14:08:46
字体:
来源:转载
供稿:网友

输入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; } 

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选