当前位置:   article > 正文

C++ //练习 11.20 重写11.1节练习(第376页)的单词计数程序,使用insert代替下标操作。你认为哪个程序更容易编写和阅读?解释原因。

C++ //练习 11.20 重写11.1节练习(第376页)的单词计数程序,使用insert代替下标操作。你认为哪个程序更容易编写和阅读?解释原因。

C++ Primer(第5版) 练习 11.20

练习 11.20 重写11.1节练习(第376页)的单词计数程序,使用insert代替下标操作。你认为哪个程序更容易编写和阅读?解释原因。

环境:Linux Ubuntu(云服务器)
工具:vim

 

代码块
/*************************************************************************
	> File Name: ex11.20.cpp
	> Author: 
	> Mail: 
	> Created Time: Sun 07 Apr 2024 09:42:21 AM CST
 ************************************************************************/

#include<iostream>
#include<iomanip>
#include<string>
#include<map>
#include<vector>
using namespace std;

int main(){
    map<string, size_t> wordCount;
    string word;
    
    cout<<"Enter words: ";
    while(cin>>word){
        ++wordCount.insert({word, 0}).first->second;
        if(cin.get() == '\n'){
            break;
        }
    }

    cout<<"Word Count: "<<endl;
    for(const auto &w : wordCount){
        cout<<"Word: "<<setw(8)<<left<<w.first<<" Count: "<<w.second<<endl;
    }

    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
运行结果显示如下

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/387045
推荐阅读
  

闽ICP备14008679号