KMP(JAVA实现)

package KMP;
import java.util.Random;

public class KMP {
    /**
     * @param s1
     * 主串
     * @param s2
     * 模式串
     * @return 如果匹配成功,返回下标,否则返回-1
     */

    public static int KMP(String s1,String s2){
        if(s1.length()

 

你可能感兴趣的:(学习分享)