给定一个主串s,一个子串sub,将主串中的所有子串替换成replaceStr,并将最终结果输出来。
1 #include2 #include 3 #include 4 int next[20]; 5 void getNext(char pattern[]) 6 { 7 int k=-1,len=strlen(pattern),j=0; 8 next[0]=-1; 9 while(j
本文共 316 字,大约阅读时间需要 1 分钟。
给定一个主串s,一个子串sub,将主串中的所有子串替换成replaceStr,并将最终结果输出来。
1 #include2 #include 3 #include 4 int next[20]; 5 void getNext(char pattern[]) 6 { 7 int k=-1,len=strlen(pattern),j=0; 8 next[0]=-1; 9 while(j
转载于:https://www.cnblogs.com/LJHAHA/p/10210525.html