题目完整描写叙述为:用递归的方式实现一个求字符串中连续出现同样字符的最大值。如aaabbcc,连续出现a的最大值为3,abbc,连续出现字符最大的值为2。
下面是我想出来的方法:
#includeusing 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不知道为什么一定要是递归实现。。。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 = s; int tmp = Get(t); return ans > tmp ? ans : tmp;}int main(){ printf("%d\n", Get("abbc")); printf("%d\n", Get("aaabbcc")); getchar(); return 0;}
可能是要考察写递归的能力吧。无所谓,反正笔试面试题都非常怪异就是了-.-
假设你有其它更好的方法,请赐教!