map容器训练:使用map容器识别统计单词个数

打印 上一主题 下一主题

主题 996|帖子 996|积分 2988


标题链接:单词识别_牛客题霸_牛客网 
对map的使用不太熟悉的同学可以参考:超详细介绍map(multimap)的使用-CSDN博客
标题解析

        输入一个英文句子,把句子中的单词(不区分巨细写)按出现次数按从多到少把单词和次数在屏幕上输出来,次数一样的按照单词小写的字典序排序输出,要求能识别英文单词和句号
        得到单词与其个数,我们会用到map容器。输出要求:个数多的先输出,个数相同按照字典序排序输出
算法分析

        实在详细思路很简单,主要是对于map容器使用的训练
        1.输入一个句子,依次得到单词,并使用map容器记载单词及其个数。
        2.因为map是按照字典序排序的,以是我们需要按照单词个数重新排序,map自己是不支持sort,以是我们将map的数据放入vector中举行排序(pair自己是支持排序的,但是它支持的排序,并不是我们所需要的排序,以是我们要传入仿函数实现自己定义的排序)
        3.排序完成我们输出结果即可
代码实现

  1. #include<iostream>
  2. #include<vector>
  3. #include<string>
  4. #include<map>
  5. #include<algorithm>
  6. using namespace std;
  7. struct compare
  8. {
  9.     bool operator()(const pair<string, int>& a, const pair<string, int>& b)
  10.     {
  11.         //当个数相同时,按照字典序排序
  12.         if (a.second == b.second)
  13.             return a.first < b.first;
  14.         return a.second > b.second;
  15.     }
  16. };
  17. int main()
  18. {
  19.     string in;
  20.     getline(cin, in);
  21.     //将单词存入数组
  22.     vector<string> word;
  23.     string tmp;
  24.     for (auto& e : in)
  25.     {
  26.         if (e == ' ' || e == '.')
  27.         {
  28.             word.push_back(tmp);
  29.             tmp.resize(0);
  30.         }
  31.         else
  32.             tmp += e;
  33.     }
  34.     //使用map容器得到单词以及其个数
  35.     map<string, int> ret;
  36.     int num = 'a' - 'A';
  37.     for (auto& r : word)
  38.     {
  39.         string e = r;
  40.         if (r[0] >= 'A' && r[0] <= 'Z')
  41.         {
  42.             e[0] += num;
  43.         }
  44.         ret[e]++;
  45.     }
  46.     //放入vector进行排序
  47.     vector<pair<string, int>> amd;
  48.     for (auto& e : ret)
  49.     {
  50.         amd.push_back(e);
  51.     }
  52.     sort(amd.begin(), amd.end(), compare());
  53.     for (auto& e : amd)
  54.     {
  55.         cout << e.first << ":" << e.second << endl;
  56.     }
  57. }
复制代码
优化:可以直接将单词放入map,没必要多先放入vector再放入map
  1. #include<iostream>
  2. #include<map>
  3. #include<string>
  4. #include<algorithm>
  5. #include<vector>
  6. using namespace std;
  7. // operator()
  8. struct compare
  9. {
  10.         bool operator()(const pair<string, int>& a, const pair<string, int>& b)
  11.         {
  12.                 if (a.second == b.second)
  13.             return a.first < b.first;
  14.         return a.second > b.second;
  15.         }
  16. };
  17. int main()
  18. {
  19.         string in;
  20.         getline(cin,in);
  21.         string tmp;
  22.         map<string, int> ret;
  23.         for (auto& e : in)
  24.         {
  25.                 if (e == '.' || e == ' ')
  26.                 {
  27.                         ret[tmp]++;
  28.                         tmp.resize(0);
  29.                 }
  30.                 else
  31.                 {
  32.                         tmp += tolower(e);//大写转小写函数。小写转大写:toupper
  33.                 }
  34.         }
  35.         vector<pair<string, int>> n;
  36.         for (auto& e : ret)
  37.         {
  38.                 n.push_back(e);
  39.         }
  40.         sort(n.begin(), n.end(), compare());
  41.         for (auto& e : n)
  42.         {
  43.                 cout << e.first << ":" << e.second<<endl;
  44.         }
  45. }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

卖不甜枣

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表