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

相邻重复字符数目最大者

时间:2016-07-16 00:19:29      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <bitset>

using namespace std;

int main()
{
    string str,prestr,restr;
    int cnt=0,max=1;
    while (cin>>str)
    {
        if (prestr==str)
        {
            ++cnt; 
        } 
        else
        {
            if (cnt>max)
            {
                restr=prestr;
                max=cnt;
            }
            cnt=1;
        }
        prestr=str;
    }
    if (max<cnt)
    {
        max=cnt;
        restr=str;
    }
        
    cout<<restr<<max<<endl;
    return 0;
}

 

相邻重复字符数目最大者

标签:

原文地址:http://www.cnblogs.com/xiaodi914/p/5674679.html

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