解题思路:
注意事项:
参考代码:
#include <stdlib.h> #include <stdio.h> #include <iostream> #include <string.h> using namespace std; #define LEN 3000 int main(){ char* s1 = (char*)malloc(sizeof(char)*LEN); char* s2 = (char*)malloc(sizeof(char)*LEN); scanf("%s",s1); scanf("%s",s2); int len1 = strlen(s1); int len2 = strlen(s2); char* s; int t = 0; if(len1<len2){ t = len1; len1 = len2; len2 = t; s = s1; s1 = s2; s2 = s; } // printf("%s\n",s1); // printf("%s\n",s2); int m; int mx = 0; int p1,p2; int i2; for(p1 = 0;p1 < len1;p1++){ for(p2 = 0;p2 < len2;p2++){ m = 0; for(i2 = 0;i2 < len2;i2++){ if(s1[(p1+i2)%len1]==s2[(p2+i2)%len2]){ m++; }else{ break; } } if(mx < m){ mx = m; } } } printf("%d\n",mx); free(s2); free(s1); return 0; }
0.0分
1 人评分
数组输出 (C语言代码)错误???浏览:602 |
C语言训练-阶乘和数* (C语言代码)-------- 呆板写法浏览:1396 |
C语言训练-数字母 (C语言代码)浏览:670 |
C语言训练-自由落体问题 (C语言代码)浏览:650 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:580 |
幸运数 (C++代码)浏览:1309 |
关于float,double变量的几点说明浏览:1926 |
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)浏览:571 |
简单的a+b (C语言代码)浏览:857 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:852 |