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

第十一章关联容器

时间:2021-06-02 14:07:14      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:end   example   ace   map   stream   isp   std   ons   ase   

习题

11.4编写你自己的单词计数程序,扩展你的程序,忽略大小写和标点。例如,"example."、"example,"和"Example"应该递增相同的计数器。

#include <string>
#include <map>
#include <iostream>
#include <algorithm>

using namespace std;

int main(){
    map<string, int> word_count;
    string tmp;
    while (cin >> tmp){
        for (char &ch : tmp)
            ch = tolower(ch);
        tmp.erase(remove_if(tmp.begin(), tmp.end(), ::ispunct), tmp.end());
        word_count[tmp] += 1;
    }
    for (const auto& elem : word_count)
        std::cout << elem.first << " : " << elem.second << endl;
    return 0;
}

 

第十一章关联容器

标签:end   example   ace   map   stream   isp   std   ons   ase   

原文地址:https://www.cnblogs.com/11ys/p/14820981.html

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