- 论坛徽章:
- 0
|
对于不连续的情况,这个也是O(n*n)的
- int strmatch(char *str, char *match)
- {
- int len = strlen(str), i, j, k;
- int first, second, max=0;
- int curr=0, curr_max=0;
- int tmp_max, tmp;
- for(i=1; i<len; i++)
- {
- if(str[curr+curr_max] == str[i] && curr_max < (i - curr + 1) >> 1 )
- {
- curr_max++;
- if(curr_max > max)
- {
- max = curr_max;
- first = curr;
- second = i - curr_max + 1;
- }
- }
- else
- {
- i += max - curr_max;
- tmp_max = 0;
- curr_max = 0;
- for(j = i - 1; j >= tmp_max && str[i] != str[j]; j--);
- while(j >= tmp_max) {
- tmp = j;
- for(k=i-1, j--; k > tmp && j >= 0 && str[k] == str[j]; k--, j--);
- tmp_max = i - k;
- if(tmp_max > curr_max) {
- curr_max = tmp_max;
- curr = j+1;
- }
- for(; j >= tmp_max && str[i] != str[j]; j--);
- }
- }
- }
- memcpy(match, str+first, max);
- match[max] = 0;
- printf("first=%d, second=%d, max=%dn", first, second, max);
- }
复制代码 |
|