摘要: package com.sun.test.student; public class KMP算法 { public static int[] getNext(String ps) { char[] p = ps.toCharArray(); int[] next = new int[p.length 阅读全文
posted @ 2020-08-10 15:04 sunjinwei123 阅读(363) 评论(0) 推荐(0)