数据结构——严蔚敏
文章平均质量分 58
陈思有
I can
展开
-
算法4.1 在一个字符串寻找子串,并返回位置
#include #include #include #define LEN 20 int LocatStr( char *, char *,int ); void main() { int n,a; char *str1,*str2;原创 2011-09-20 19:39:57 · 1065 阅读 · 0 评论 -
算法4.3 取一个字符串的子串
#include #include #include int SubString( char *sub, char *str, int n, int len ); void main() { char sub[10],str[20],n,len,i;原创 2011-09-20 22:10:08 · 866 阅读 · 0 评论 -
将一个字符串插入到另一个字符串的某个位置
#include #include #include int StrInsert( char *str, int n, char *str_ins ); void DestroyStr( char *str, char *str_ins); void ma原创 2011-09-20 23:00:40 · 11228 阅读 · 0 评论 -
KMP算法
#include #include void Next(char *str,int *next); int FindStr(char *bigStr,char *smallStr, int *next); void main() { char bigStr[30],smallStr[8]; int next[4]; //next的长度应该为smallStr的一半原创 2011-10-24 22:19:14 · 394 阅读 · 0 评论