前缀树实现字典添加查询

. - 力扣(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

示例:

复制代码
输入
["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
  • wordprefix 仅由小写英文字母组成
  • insertsearchstartsWith 调用次数 总计 不超过 3 * 104
cpp 复制代码
class Trie {
public:
    Trie() {
        childs = std::vector<Trie*>(26, nullptr);
    }

    ~Trie() {
        for (auto child: childs) {
            if (child) {
                delete child;
            }
        }
    }
    
    Trie* searchInternal(string word) {
        auto p = this;
        for (auto ch : word) {
            int idx = ch - 'a';
            if (p->childs[idx] == nullptr) {
                return nullptr;
            }
            p = p->childs[idx];
        }
        return p;
    }

    void insert(string word) {
        auto p = this;
        for (auto ch : word) {
            int idx = ch - 'a';
            if (p->childs[idx] == nullptr) {
                p->childs[idx] = new Trie;
            }
            p = p->childs[idx];
        }
        p->end = true;
    }
    
    bool search(string word) {
        auto tree = searchInternal(word);
        return tree != nullptr && tree->end;
    }
    
    bool startsWith(string prefix) {
        return searchInternal(prefix) != nullptr;
    }

    std::vector<Trie*> childs;
    bool end = 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);
 */
相关推荐
普罗米修斯16 分钟前
C++ 设计模式理论与实战大全【共73课时】
c++·后端
YouEmbedded18 分钟前
解码查找算法与哈希表
数据结构·算法·二分查找·散列表·散列查找·线性查找
普罗米修斯20 分钟前
C++ 设计模式原理与实战大全-架构师必学课程 | 完结
c++·后端
greentea_201343 分钟前
Codeforces Round 65 C. Round Table Knights(71)
c语言·开发语言·算法
小秋学嵌入式-不读研版1 小时前
C61-结构体数组
c语言·开发语言·数据结构·笔记·算法
可触的未来,发芽的智生1 小时前
触摸未来2025.10.04:当神经网络拥有了内在记忆……
人工智能·python·神经网络·算法·架构
与己斗其乐无穷1 小时前
刷题记录(11)map和set的简单使用
算法
夜月yeyue2 小时前
个人写HTOS移植shell
c++·mcu·算法·性能优化·架构·mfc
ajassi20002 小时前
开源 C++ QT QML 开发(九)文件--文本和二进制
c++·qt·开源
Nix Lockhart2 小时前
《算法与数据结构》第七章[算法3]:图的最小生成树
c语言·数据结构·算法