摘要: 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;//开始统 阅读全文
posted @ 2021-06-10 11:15 BOTAK 阅读(48) 评论(0) 推荐(0) 编辑
摘要: class Solution{ public static void main(String[] args) { String s1 = "abeababeabf"; String s2 = "abeabf"; System.out.println(KMP(s1,s2)); } public sta 阅读全文
posted @ 2021-06-10 11:11 BOTAK 阅读(44) 评论(0) 推荐(0) 编辑