摘要: 请看下面的代码:public class KMP{ public static void main(String args []){ testRollBackArray(); testKMPSearchMatch(); testKMPSearchNoMatch(); } /** * each value of array rollback means: when source[i] mismatch pattern[i], * KMP will resta... 阅读全文
posted @ 2012-08-26 10:16 Zollty 阅读(287) 评论(0) 推荐(0) 编辑