手记

C++求字符串最长连续字符的长度的代码


下边内容是关于 C++求字符串最长连续字符的长度的内容。

#include<assert.h>  

{  

    assert(s!=NULL);  

    int temp_count,final_count=0;  

    p=s;  

    {  

        temp_count=0;  

        {  

                temp_count++;  

            else  

                break;  

        }  

        if(temp_count>final_count)  

        {  

            final_char=temp_char;  

            final_count=temp_count;  

        }  

    }  

    return final_count;  

}  

void main()  

{  

    char s[]="aabbbcccc";  

    int count;  

    char c;  

    count=get_max_char_count(s,&c);  

    printf("%c is appeared %d timesn",c,count);  

}

©著作权归作者所有:来自51CTO博客作者Mychat_on的原创作品,如需转载,请注明出处,否则将追究法律责任


0人推荐
随时随地看视频
慕课网APP