PAT Speech Patterns(字符串处理)

在这里插入图片描述

题意:单词由数字和大小写字母组成,问你那个单词出现最多并输出次数。

思路:忽略大小写,然后从每个单词起始往下找。

代码:

#include<bits/stdc++.h>
using namespace std;


bool check(char c)
{
    if(isdigit(c))return true;
    if(isalpha(c))return true;
    return false;
}
int main()
{
    string s1;
    unordered_map<string,int> hash;
    getline(cin,s1);
    
    for(int i=0;i<s1.size();i++)
    {
       if(check(s1[i]))
       {
           string word;
           int j=i;
           while(j<s1.size()&&check(s1[j])) word+=tolower(s1[j++]);
           
           i=j-1;
           hash[word]++;

       }
    }
    int cnt=-1;
    string word;
    for(auto item:hash)
    {
        if(cnt<item.second||item.second==cnt&&item.first<word)
        {
            cnt=item.second;
            word=item.first;
        }
    }
    cout<<word<<' '<<cnt<<endl;
   
return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值