[2013百度軟體研發筆試題] 求字串中連續出現相同字元的最大值

來源:互聯網
上載者:User

標籤:style   blog   os   io   ar   2014   log   amp   size   

題目完整描述為:用遞迴的方式實現一個求字串中連續出現相同字元的最大值,如aaabbcc,連續出現a的最大值為3,abbc,連續出現字元最大的值為2。


以下是我想出來的方法:

#include <iostream>using namespace std;#define MAX(a, b) (a) > (b) ? (a) : (b)int Get(char *s, int n, int m)  //字元指標, 當前最長串, max最長串{    if(*(s+1) == '\0')        return MAX(n, m);    if(*s == *(s+1))        return Get(s+1, n+1, m);    return Get(s+1, 1, MAX(n, m));}int main(){    printf("%d\n", Get("abbc", 1, 1));     printf("%d\n", Get("aaabbcc", 1, 1));     getchar();    return 0;}

以及另一種遞迴的方法:

#include <iostream>using namespace std;int Get(char *s){    int ans = 0;    char *t = s;    if(*s == '\0')        return ans;    while(*s != '\0' && *t == *s)        ans++, s++;    t++;    int tmp = Get(t);    return ans > tmp ? ans : tmp;}int main(){    printf("%d\n", Get("abbc"));    printf("%d\n", Get("aaabbcc"));    getchar();    return 0;}
不知道為什麼一定要是遞迴實現。。。可能是要考察寫遞迴的能力吧,無所謂,反正筆試面試題都很怪異就是了-.-

如果你有其他更好的方法,請賜教!

[2013百度軟體研發筆試題] 求字串中連續出現相同字元的最大值

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.