题解 | #在字符串中找出连续最长的数字串#

在字符串中找出连续最长的数字串

https://www.nowcoder.com/practice/2c81f88ecd5a4cc395b5308a99afbbec

#include<iostream>
using namespace std;


int main()
{
    string s;
    
    while(cin>>s){
        int len=s.length();
        string res="";
        string t="";
        int i=0;
        int cnt=0;
        int ans=0;
        while(i<len){
            cnt=0;
            if(!isdigit(s[i])){
                i++;
                t="";
            }else{
                while(isdigit(s[i])&&i<len){
                    t+=s[i++];
                    cnt++;
                }
                if(cnt>ans){
                    res=t;
                    ans=cnt;
                    cnt=0;
                    t="";
                }else if(cnt==ans){
                    res+=t;
                    t="";
                }
            } 
        }
        cout<<res<<","<<ans<<endl;
    }

    return 0;
}

全部评论

相关推荐

2024-12-21 18:48
西安邮电大学 C++
黑皮白袜臭脚体育生:按使用了什么技术解决了什么问题,优化了什么性能指标来写会更好另外宣传下自己的开源仿b站微服务项目,GitHub已经390star,牛客上有完整文档教程
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务