中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java實現基于Trie樹結構的回文前綴樹

發布時間:2024-11-12 09:23:48 來源:億速云 閱讀:83 作者:小樊 欄目:編程語言

Trie樹(也稱為前綴樹)是一種用于存儲字符串的樹形結構

import java.util.HashMap;
import java.util.Map;

class TrieNode {
    Map<Character, TrieNode> children;
    boolean isEndOfWord;

    public TrieNode() {
        children = new HashMap<>();
        isEndOfWord = false;
    }
}

public class PalindromeTrie {
    private TrieNode root;

    public PalindromeTrie() {
        root = new TrieNode();
    }

    // 插入一個字符串到回文前綴樹中
    public void insert(String word) {
        TrieNode current = root;
        for (char ch : word.toCharArray()) {
            current.children.putIfAbsent(ch, new TrieNode());
            current = current.children.get(ch);
        }
        current.isEndOfWord = true;
    }

    // 檢查回文前綴樹中是否存在某個字符串
    public boolean search(String word) {
        TrieNode current = root;
        for (char ch : word.toCharArray()) {
            if (!current.children.containsKey(ch)) {
                return false;
            }
            current = current.children.get(ch);
        }
        return current.isEndOfWord;
    }

    // 檢查回文前綴樹中是否存在某個字符串的前綴
    public boolean startsWith(String prefix) {
        TrieNode current = root;
        for (char ch : prefix.toCharArray()) {
            if (!current.children.containsKey(ch)) {
                return false;
            }
            current = current.children.get(ch);
        }
        return true;
    }

    public static void main(String[] args) {
        PalindromeTrie trie = new PalindromeTrie();
        trie.insert("madam");
        trie.insert("hello");
        trie.insert("world");

        System.out.println(trie.search("madam")); // 輸出: true
        System.out.println(trie.search("hello")); // 輸出: true
        System.out.println(trie.search("world")); // 輸出: true
        System.out.println(trie.search("hell")); // 輸出: false

        System.out.println(trie.startsWith("mad")); // 輸出: true
        System.out.println(trie.startsWith("hel")); // 輸出: true
        System.out.println(trie.startsWith("wor")); // 輸出: true
        System.out.println(trie.startsWith("worl")); // 輸出: false
    }
}

這個實現中,我們定義了一個TrieNode類來表示回文前綴樹的節點,每個節點包含一個字符到子節點的映射(children)和一個布爾值(isEndOfWord),表示該節點是否是一個字符串的結尾。

PalindromeTrie類包含一個根節點(root),以及插入、搜索和前綴檢查的方法。插入方法將一個字符串的每個字符按順序插入到回文前綴樹中;搜索方法檢查回文前綴樹中是否存在某個字符串;前綴檢查方法檢查回文前綴樹中是否存在某個字符串的前綴。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

确山县| 桦甸市| 乐平市| 丹棱县| 安顺市| 温州市| 土默特左旗| 长兴县| 宜宾县| 武威市| 绥化市| 大石桥市| 德州市| 来凤县| 崇左市| 莱芜市| 弋阳县| 山阴县| 湟源县| 来凤县| 门源| 桐柏县| 蓝山县| 武强县| 柳江县| 曲阳县| 莒南县| 洛扎县| 九台市| 普定县| 都江堰市| 密山市| 马鞍山市| 景洪市| 墨竹工卡县| 武义县| 政和县| 固镇县| 龙胜| 汉中市| 平邑县|