c++编程之统计字符串中单词及其次数(利用map快速实现)

  • Post author:
  • Post category:其他


编程:编写一程序(应该有多个函数),允许从键盘输入任意多个英语单词(单词可以重复),中间用空格分开,输入0表示输入结束。该程序可以统计同一个英语单词被输入几次,最后对英文单词按字典顺序输出,后面跟上该单词被输入的次数。

# include<iostream>
# include<string>
# include<algorithm>
# include<map>
using namespace std;
int main(){
 map<string, int> word_count;//因为在map容器本来存储就是按序排的
 string word;
 while (cin >> word && word != "0") word_count[word] ++;
 
 for(auto &c : word_count)
 	 cout << c.first << " " << c.second << endl;
 return 0;
}




版权声明:本文为weixin_45614886原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。