摘要: public static int[] cal_next(string str, int[] next, int len) { int i, j; next[0] = -1; for (i = 1; i < len; i++) { j = next[i - 1]; while (str[j + 1] 阅读全文
posted @ 2019-02-13 09:26 越界 阅读(116) 评论(0) 推荐(0) 编辑