溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java實(shí)現(xiàn)基于后綴樹(shù)的回文串子串查找

發(fā)布時(shí)間:2024-11-11 18:55:44 來(lái)源:億速云 閱讀:78 作者:小樊 欄目:編程語(yǔ)言

在Java中實(shí)現(xiàn)基于后綴樹(shù)的回文串子串查找,首先需要構(gòu)建一個(gè)后綴樹(shù),然后利用這個(gè)后綴樹(shù)來(lái)查找回文串

import java.util.*;

class SuffixTreeNode {
    int start, end;
    Map<Character, SuffixTreeNode> children;

    public SuffixTreeNode() {
        start = -1;
        end = -1;
        children = new HashMap<>();
    }
}

public class SuffixTree {
    private SuffixTreeNode root;
    private String text;

    public SuffixTree(String text) {
        this.text = text;
        buildSuffixTree();
    }

    private void buildSuffixTree() {
        int n = text.length();
        root = new SuffixTreeNode();
        for (int i = 0; i < n; i++) {
            insert(text.substring(i));
        }
    }

    private void insert(String suffix) {
        SuffixTreeNode node = root;
        for (char c : suffix.toCharArray()) {
            if (!node.children.containsKey(c)) {
                node.children.put(c, new SuffixTreeNode());
            }
            node = node.children.get(c);
        }
        node.end = suffix.length() - 1;
    }

    public List<Integer> searchPalindrome(String palindrome) {
        List<Integer> result = new ArrayList<>();
        for (int i = 0; i < text.length(); i++) {
            if (isPalindrome(text, i, i + palindrome.length() - 1)) {
                result.add(i - palindrome.length() + 1);
            }
        }
        return result;
    }

    private boolean isPalindrome(String text, int start, int end) {
        while (start < end) {
            if (text.charAt(start) != text.charAt(end)) {
                return false;
            }
            start++;
            end--;
        }
        return true;
    }

    public static void main(String[] args) {
        String text = "banana";
        SuffixTree suffixTree = new SuffixTree(text);
        String palindrome = "ana";
        List<Integer> result = suffixTree.searchPalindrome(palindrome);
        System.out.println("Palindrome found at positions: " + result);
    }
}

這個(gè)程序首先構(gòu)建了一個(gè)后綴樹(shù),然后通過(guò)searchPalindrome方法查找給定的回文串子串在文本中的所有位置。isPalindrome方法用于檢查一個(gè)字符串是否為回文串。

注意:這個(gè)實(shí)現(xiàn)僅適用于較短的文本,因?yàn)闃?gòu)建后綴樹(shù)的時(shí)間復(fù)雜度為O(n^2),其中n為文本長(zhǎng)度。對(duì)于較長(zhǎng)的文本,可以考慮使用更高效的算法,如Manacher算法。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI