摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=2087View Code 1 #include<stdio.h> 2 #include<string.h> 3 4 void get_nextval(char T[ ],int nextval[ ]) 5 {//求模式串T的next函数修正值并存入数组nextval. 6 int i=1,j=0; 7 int length; 8 nextval[1]=0; 9 length=strlen(T);10 11 while(i<length)12 ... 阅读全文
posted @ 2012-10-05 14:21 皇星客栈--Linux 阅读(218) 评论(0) 推荐(0) 编辑