• 96 前缀树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"]]
    
    • 1
    • 2

    输出

    [null, null, true, false, true, null, true]
    
    • 1

    解释

    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
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    提示:

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

    题解1 STL

    class Trie {
    	// map看存在
        map<string, int> m;
        // set看前缀
        set<string> k;
    public:
        Trie() {}
        
        void insert(string word) {
            m[word] += 1;
            // k存储前缀
            for(int i = 0; i <= word.size(); i++)
                k.insert(word.substr(0, i));
        }
        
        bool search(string word) {
            if(m.count(word))
                return true;
            return false;
        }
        
        bool startsWith(string prefix) {
            if(k.count(prefix))
                return true;
            return false;
        }
    };
    
    /**
     * Your Trie object will be instantiated and called as such:
     * Trie* obj = new Trie();
     * obj->insert(word);
     * bool param_2 = obj->search(word);
     * bool param_3 = obj->startsWith(prefix);
     */
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    在这里插入图片描述

    题解2 参考官方

    class Trie {
        vector<Trie*> children;
        bool isEnd;
    
        Trie* searchPrefix(string prefix){
            Trie* node = this;
            for(char ch : prefix){
                ch -= 'a';
                if(! node->children[ch]){
                    return nullptr;
                }
                node = node->children[ch];
            }
            return node;
        }
    public:
        Trie() : children(26), isEnd(false){}
        
        void insert(string word) {
            Trie* node = this;
            for(char ch : word){
                ch -= 'a';
                if(! node->children[ch])
                    node->children[ch] = new Trie();
                node = node->children[ch];
            }
            // 这个word对应的node 完整到底
            node->isEnd = true;
        }
        
        bool search(string word) {
            Trie* node = this->searchPrefix(word);
            // word不可以是前缀,所有要判断isEnd
            return node && node->isEnd;
        }
        
        bool startsWith(string prefix) {
            return this->searchPrefix(prefix) != nullptr;
        }
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40

    在这里插入图片描述

  • 相关阅读:
    Qt之菜单栏、工具栏、状态栏介绍及工具栏QAction的动态增删显示实现方式
    相信未来:技术的进步意味着重构
    mac配置hdc
    华为云构建云原生DevSecOps平台,保障软件供应链全流程安全可信
    rust_for_linux驱动完整版记录
    南阳市卧龙区中医院综合楼施工组织设计及投标报价
    LeetCode算法心得——使用最小花费爬楼梯(记忆化搜索+dp)
    算法篇------动态规划1
    Redis
    统一建模语言UML(1~8章在线测试参考答案)
  • 原文地址:https://blog.csdn.net/qq_43402798/article/details/134324215