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

PAT:1071. Speech Patterns (25) AC

时间:2015-03-11 00:34:32      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

#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;
}

PAT:1071. Speech Patterns (25) AC

标签:

原文地址:http://www.cnblogs.com/Evence/p/4328775.html

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