Implement Trie (Prefix Tree)

本文介绍了一种使用TrieNode数组实现的Trie字典结构,详细解释了如何通过插入、搜索和前缀匹配来操作字母单词。文章重点讨论了TrieNode的设计,包括其属性和方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

如何实现Trie字典。

当中有两点:

1. TrieNode中我们用的是大小为26的数组,而非map,因为题目本身限定,是字母的存储查询,用数组足够且更省空间。

2. boolean isExist,代表从root到此节点所构成的word,是否存在,记住,这个是可以不存在的,即便到其子节点可能存在。

class TrieNode {
    
    public char c;
    public TrieNode[] children = new TrieNode[26];
    public boolean isExist;
    // Initialize your data structure here.
    public TrieNode() {
    }
    public TrieNode(char c) {
        this.c = c;
    }
}

public class Trie {
    private TrieNode root;

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

    // Inserts a word into the trie.
    public void insert(String word) {
        if (word == null || word.length() == 0) {
            return;
        }
        TrieNode node = root;
        for (int i = 0; i < word.length(); i++) {
            int num = word.charAt(i) - 'a';
            if (node.children[num] == null) {
                TrieNode child = new TrieNode(word.charAt(i));
                node.children[num] = child;
                node = child;
            } else {
                node = node.children[num];
            }
        }
        node.isExist = true;
    }

    // Returns if the word is in the trie.
    public boolean search(String word) {
        if (word == null || word.length() == 0) {
            return false;
        }
        TrieNode node = root;
        for (int i = 0; i < word.length(); i++) {
            int num = word.charAt(i) - 'a';
            if (node.children[num] == null) {
                return false;
            } else {
                node = node.children[num];
            }
        }
        return node.isExist;
    }

    // Returns if there is any word in the trie
    // that starts with the given prefix.
    public boolean startsWith(String prefix) {
        if (prefix == null || prefix.length() == 0) {
            return false;
        }
        TrieNode node = root;
        for (int i = 0; i < prefix.length(); i++) {
            int num = prefix.charAt(i) - 'a';
            if (node.children[num] == null) {
                return false;
            } else {
                node = node.children[num];
            }
        }
        return true;
    }
}

// Your Trie object will be instantiated and called as such:
// Trie trie = new Trie();
// trie.insert("somestring");
// trie.search("key");


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值