leetcode 208. 实现 Trie (前缀树)

leetcode 208. 实现 Trie (前缀树)

题目

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

请你实现 Trie 类:

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

示例:

输入
[“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

思路

哈希擅长的是单值查找,对于查找符合前缀或者后缀的则不太在行,而且数据数量多起来后,每一个数据都要有自己的hashcode,还是比较占时间的。Trie树则是一种对由有限字符(数字、字母)构成的字符串查找比较在行,虽然可能单个的索引慢一些,但是支持前后缀的查找。

题解

class Trie {
    Trie[] children;
    int cnt;

    public Trie() {
        children = new Trie[26];
        cnt = 0;
    }
    
    public void insert(String word) {
        Trie node = this;
        for(int i=0;i<word.length();i++) {
            char ch = word.charAt(i);
            if(node.children[ch - 'a'] == null) {node.children[ch - 'a'] = new Trie();}
            node = node.children[ch - 'a'];
        }
        node.cnt += 1;
    }
    
    public boolean search(String word) {
        Trie node = this;
        for(int i=0;i<word.length();i++) {
            char ch = word.charAt(i);
            if(node.children[ch - 'a'] == null) {return false;}
            node = node.children[ch - 'a'];
        }
        return node.cnt > 0;
    }
    
    public boolean startsWith(String prefix) {
        Trie node = this;
        for(int i=0;i<prefix.length();i++) {
            char ch = prefix.charAt(i);
            if(node.children[ch - 'a'] == null) {return false;}
            node = node.children[ch - 'a'];
        }
        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);
 */

相关推荐

  1. leetcode 208. 实现 Trie (前缀)

    2023-12-05 17:30:02       55 阅读
  2. 【字典TrieLeetCode-208. 实现 Trie (前缀)

    2023-12-05 17:30:02       59 阅读
  3. LeetCode-热题100:208. 实现 Trie (前缀)

    2023-12-05 17:30:02       40 阅读
  4. LeetCode 算法:实现 Trie (前缀) c++

    2023-12-05 17:30:02       25 阅读
  5. 力扣:208. 实现 Trie (前缀)(Python3)

    2023-12-05 17:30:02       65 阅读
  6. 力扣第208题“实现 Trie (前缀)”

    2023-12-05 17:30:02       26 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2023-12-05 17:30:02       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2023-12-05 17:30:02       100 阅读
  3. 在Django里面运行非项目文件

    2023-12-05 17:30:02       82 阅读
  4. Python语言-面向对象

    2023-12-05 17:30:02       91 阅读

热门阅读

  1. Android 14 CarAudioService

    2023-12-05 17:30:02       53 阅读
  2. Dockerfile 与 Docker Compose区别

    2023-12-05 17:30:02       41 阅读
  3. 分布式和集群区别和优势

    2023-12-05 17:30:02       56 阅读
  4. 关于嵌入式系统一些名词的小结(ARM/CORTEX/STM32等)

    2023-12-05 17:30:02       49 阅读
  5. 使用Spark写入数据到数据库表

    2023-12-05 17:30:02       57 阅读