keer哥的点点滴滴

人生格言 为民族立生命,为万世开太平!——连战

摘要: public class KMP { public static int[] next(char[] s) { int length = s.length; int next[]=new int[length]; next[0]=-1; next[1]=0; for(int i=2;i<length;i... 阅读全文
posted @ 2008-03-30 11:07 珂儿 阅读(2030) 评论(0) 推荐(0) 编辑