zoukankan      html  css  js  c++  java
  • 蓝桥杯 不同单词个数统计 map

    问题描述
      编写一个程序,输入一个句子,然后统计出这个句子当中不同的单词个数。例如:对于句子“one little two little three little boys”,总共有5个不同的单词:one, little, two, three, boys。
      说明:(1)由于句子当中包含有空格,所以应该用gets函数来输入这个句子;(2)输入的句子当中只包含英文字符和空格,单词之间用一个空格隔开;(3)不用考虑单词的大小写,假设输入的都是小写字符;(4)句子长度不超过100个字符。
      输入格式:输入只有一行,即一个英文句子。
      输出格式:输出只有一行,是一个整数,表示句子中不同单词的个数。
    样例输入
    one little two little three little boys
    样例输出
    5
    map有size函数,涨知识了。
     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 int main() {
     4     map<string, int> mp;
     5     string s;
     6     while (cin >> s) {
     7         mp[s]++;
     8     }
     9     cout << mp.size() << endl;
    10     return 0;
    11 }
  • 相关阅读:
    第一周。。。
    新人日报1129
    Daily Report-1126
    How to read source code[repost]
    Markdown tutorial [repost]
    蘑菇街面经
    阿里面经
    百度凤巢一二面经
    Mybatis最入门---代码自动生成(generatorConfig.xml配置)
    Maven的生命周期阶段
  • 原文地址:https://www.cnblogs.com/fx1998/p/12747767.html
Copyright © 2011-2022 走看看