#include <stdio.h> #include <string.h> #define N 50 int f(const char* s1, const char* s2) { int a[N][N];//矩阵 int len1 = strlen(s1); int len2 = strlen(s2); int i,j; memset(a,0,sizeof(int)*N*N); int max = 0; for(i=1; i<=len1; i++){ for(j=1; j<=le...