【LeetCode】实现 Trie (前缀树) [M](前缀树)

本文介绍了如何实现Trie数据结构,包括插入字符串、搜索字符串以及判断字符串是否为某个已插入字符串的前缀。Trie是一种高效存储和检索字符串数据集键的树形结构,常用于自动补全和拼写检查。示例展示了插入apple等字符串后进行搜索和前缀判断的操作。
摘要由CSDN通过智能技术生成

208. 实现 Trie (前缀树) - 力扣(LeetCode)

一、题目

Trie(发音类似 "try")或者说 前缀树 是一种树形数据结构,用于高效地存储和检索字符串数据集中的键。这一数据结构有相当多的应用情景,例如自动补完和拼写检查。

请你实现 Trie 类:

  • Trie() 初始化前缀树对象。
  • void insert(String word) 向前缀树中插入字符串 word 。
  • boolean search(String word) 如果字符串 word 在前缀树中,返回 true(即,在检索之前已经插入);否则,返回 false 。
  • boolean startsWith(String prefix) 如果之前已经插入的字符串 word 的前缀之一为 prefix ,返回 true ;否则,返回 false 。

示例 1:
输入
["Trie", "insert", "search", "search", "startsWith", "insert", "search"]
[[], ["apple"], ["apple"], ["app"], ["app"], ["app"], ["app"]]
输出
[null, null, true, false, true, null, true]

解释
Trie trie = new Trie();
trie.insert("apple");
trie.search("apple");   // 返回 True
trie.search("app");     // 返回 False
trie.startsWith("app"); // 返回 True
trie.insert("app");
trie.search("app");     // 返回 True

提示:

  • 1 <= word.length, prefix.length <= 2000
  • word 和 prefix 仅由小写英文字母组成
  • insert、search 和 startsWith 调用次数 总计 不超过 3 * 10^4 次

二、代码

class Trie {
    // 前缀树节点类
    public class Node {
        // 当前节点是否为一个字符串的结尾
        public boolean end;
        // 该节点的子路径
        public Node[] nexts;

        public Node() {
            this.end = false;
            // 子路径初始化26个位置,代表26个英文小写字母
            nexts = new Node[26];
        }
    }

    // 前缀树的根节点
    public Node root;

    // 初始化前缀树
    public Trie() {
        root = new Node();
    }
    
    // 将word字符串插入到前缀树中
    public void insert(String word) {
        char[] w = word.toCharArray();
        Node node = root;
        for (int i = 0; i < w.length; i++) {
            if (node.nexts[w[i] - 'a'] == null) {
                node.nexts[w[i] - 'a'] = new Node();
            }

            node = node.nexts[w[i] - 'a'];
        }
        node.end = true;
    }
    // 查询前缀树中是否存在字符串word
    public boolean search(String word) {
        char[] w = word.toCharArray();
        Node node = root;
        for (int i = 0; i < w.length; i++) {
            if (node.nexts[w[i] - 'a'] == null) {
                return false;
            }

            node = node.nexts[w[i] - 'a'];
        }
        // 只有最后的位置end为true,也就是确实是一个字符串的结尾才能返回true
        return node.end;
    }
    // 查询字符串prefix是否为前缀树中的一个前缀
    public boolean startsWith(String prefix) {
        char[] p = prefix.toCharArray();
        Node node = root;
        for (int i = 0; i < p.length; i++) {
            if (node.nexts[p[i] - 'a'] == null) {
                return false;
            }

            node = node.nexts[p[i] - 'a'];
        }
        // 只要是找到了prefix的路径,就直接返回true
        return true;
    }
}

/**
 * Your Trie object will be instantiated and called as such:
 * Trie obj = new Trie();
 * obj.insert(word);
 * boolean param_2 = obj.search(word);
 * boolean param_3 = obj.startsWith(prefix);
 */

三、解题思路 

就是构建一个简单的前缀树。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值