KMP算法

自己写的KMP算法,用来练手

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

/**
 * Created by niweimin on 2014/12/23.
 */
public class KmpMatch {
    public String patten;
    public int matchTimes;
    public KmpMatch(String patten){
        this.patten = patten;
    }

    public static void main(String [] args){
        System.out.print("Please input the patten string:");
        String patten = "", target = "";
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        try {
            patten = reader.readLine();
        } catch (IOException e) {
            e.printStackTrace();
        }
        System.out.print("Please input the target string:");
        try {
            target = reader.readLine();
        } catch (IOException e) {
            e.printStackTrace();
        }
        KmpMatch match = new KmpMatch(patten);
        if(match.findMatch(target)){
            System.out.println("Find! Match Times: " + match.matchTimes);
        }else{
            System.out.println("Not Find!");
        }
    }

    private int[] genNextTable(){
        int [] table = new int[patten.length()];
        table [0] = -1;
        for(int i = 1; i < table.length; i++){
            table [i] = next(i);
        }
        return table;
    }

    private int next(int j) {
        int max = 0;
        for(int i = 1; i < j - 1; i++){
            if(patten.substring(0, i).equals(patten.substring(j - i, j))){
                max = i;
            }
        }
        return max;
    }

    public boolean findMatch(String target){
        int  j = 0, next = 0, start = 0, i = start;
        int [] table = genNextTable();
        while(patten.length() - j <= target.length() - i) {
            while (patten.charAt(j) == target.charAt(i)) {
                matchTimes++;
                if (j == patten.length() - 1) {
                    return true;
                }
                i++;
                j++;
            }
            matchTimes++;
            next = table[j];
            start = start + j - next;
            i = start + next;
            j = Math.max(0, next);
        }
        return false;
    }
}


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值