C語言查找兩個字符串中的最大公共子串

#include<stdio.h> #include<string.h> #include<stdlib.h>web char *commonstring(char *str1,char *str2) { int i,j; char *longstr,*shortstr; char *substr; //判斷是否爲空 if(*str1 == NULL || *str2 == NULL) { ret
相關文章
相關標籤/搜索