温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Java实现基于Knuth-Morris-Pratt算法的回文串匹配

发布时间:2024-11-11 18:35:43 来源:亿速云 阅读:78 作者:小樊 栏目:编程语言

Knuth-Morris-Pratt(KMP)算法是一种高效的字符串匹配算法,它的时间复杂度为O(n+m),其中n和m分别是文本串和模式串的长度

public class KMPAlgorithm {
    public static void main(String[] args) {
        String text = "ABABC";
        String pattern = "AB";
        int[] lps = computeLPSArray(pattern);
        int index = kmpSearch(text, pattern, lps);
        if (index != -1) {
            System.out.println("Pattern found at index: " + index);
        } else {
            System.out.println("Pattern not found");
        }
    }

    // 计算最长前缀后缀数组(LPS数组)
    public static int[] computeLPSArray(String pattern) {
        int[] lps = new int[pattern.length()];
        int len = 0;
        int i = 1;

        while (i < pattern.length()) {
            if (pattern.charAt(i) == pattern.charAt(len)) {
                len++;
                lps[i] = len;
                i++;
            } else {
                if (len != 0) {
                    len = lps[len - 1];
                } else {
                    lps[i] = 0;
                    i++;
                }
            }
        }
        return lps;
    }

    // KMP搜索算法
    public static int kmpSearch(String text, String pattern, int[] lps) {
        int n = text.length();
        int m = pattern.length();
        int i = 0; // 指向text的指针
        int j = 0; // 指向pattern的指针

        while (i < n) {
            if (pattern.charAt(j) == text.charAt(i)) {
                i++;
                j++;
            }

            if (j == m) {
                System.out.println("Pattern found at index: " + (i - j));
                j = lps[j - 1];
            } else if (i < n && pattern.charAt(j) != text.charAt(i)) {
                if (j != 0) {
                    j = lps[j - 1];
                } else {
                    i++;
                }
            }
        }
        return -1; // 如果未找到模式串,返回-1
    }
}

这个程序首先计算模式串的最长前缀后缀数组(LPS数组),然后使用KMP搜索算法在文本串中查找模式串。如果找到模式串,程序将输出其在文本串中的起始索引。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI