數據結構--KMP算法C語言實現

#include<stdio.h> #include<stdlib.h> typedef struct { char *ch; int length; }Str; //串賦值操做 int strassign(Str& str,char *ch){ //求ch串的長度 int len=0; char *c=ch; while(*c){ ++len; ++c; } if(le
相關文章
相關標籤/搜索