zoukankan      html  css  js  c++  java
  • PAT:1071. Speech Patterns (25) AC

    #include<ctype.h>
    #include<iostream>
    #include<map>
    #include<string>
    using namespace std;
    
    bool check(char a)          //判断是否为有效字符
    {
      if(isdigit(a) || isalpha(a))
        return true;
      return false;
    }
    int main()
    {
      map<string,int> count;    //单词与次数的映射
      string str;
      getline(cin,str);      //【skill】输入一行,不能用gets
      int i=0;
      while(i<str.length())    //【caution】这里不是size
      {
        while(i<str.length() && check(str[i])==false)    //忽略非有效字符
          ++i;
        string word;
        while(i<str.length() && check(str[i])==true)    //抠出单词
        {
          if(str[i]>='A' && str[i]<='Z')
            str[i]=str[i]-'A'+'a';            //【caution】统计单词,大写要换成小写
          word+=str[i++];
        }
        if(count.find(word)!=count.end())          //统计词频
          ++count[word];
        else
          count[word]=1;
      }
      string ans;
      int MAXtimes=-1;
      for(map<string,int>::iterator it=count.begin() ; it!=count.end() ; ++it)
      {
        if(it->second>MAXtimes)
        {
          MAXtimes=it->second;
          ans=it->first;
        }
      }
      cout<<ans<<" "<<MAXtimes<<endl;
      return 0;
    }
  • 相关阅读:
    tensorflow学习笔记13
    Java——内部类
    Java——枚举
    Java——代码块
    Java——static
    Java——接口
    Java——final
    Java——权限修饰符
    Java——多态
    Java——抽象类
  • 原文地址:https://www.cnblogs.com/Evence/p/4328775.html
Copyright © 2011-2022 走看看