2014年9月1日
摘要: KMP代码: 1 int KmpSearch(char* s, char* p) 2 { 3 int i = 0; 4 int j = 0; 5 int sLen = strlen(s); 6 int... 阅读全文
posted @ 2014-09-01 17:12 zmlctt 阅读(763) 评论(0) 推荐(0)