常规kmp 题目:给你一个非空模板串S,一个文本串T,问T在S中完全匹配的起始下标(从0开始) 分析: 利用match串的next数组加速匹配过程 next[i]:表示match[0...i-1]位置上前缀和后缀最长匹配长度 规定:next[0]=-1.next[1]=0,遍历指针从i=2开始 public static int[] getNextArray(char[] match) { // 长度为1的数组,前面没有元素,规定next值为-1 if (match.length == 1) { return new int[]{-1}; ...