摘要:
public static int max=0; public static void process(int[] arr,int index,int k){ if(k==0||index==arr.length){//如果已经将k个0变成1了,或者到达了字符串末尾了 int tmp=0;//开始统 阅读全文
摘要:
class Solution{ public static void main(String[] args) { String s1 = "abeababeabf"; String s2 = "abeabf"; System.out.println(KMP(s1,s2)); } public sta 阅读全文