当前位置: 首页 > article >正文

【Leetcode 热题 100】208. 实现 Trie (前缀树)

问题背景

T r i e Trie Trie 或者说 前缀树 是一种树形数据结构,用于高效地存储和检索字符串数据集中的键。这一数据结构有相当多的应用情景,例如自动补全和拼写检查。
请你实现 Trie 类:

  • Trie() 初始化前缀树对象。
  • void insert(String word) 向前缀树中插入字符串 w o r d word word
  • boolean search(String word) 如果字符串 w o r d word word 在前缀树中,返回 t r u e true true(即,在检索之前已经插入);否则,返回 f a l s e false false
  • boolean startsWith(String prefix) 如果之前已经插入的字符串 w o r d word word 的前缀之一为 p r e f i x prefix prefix,返回 t r u e true true;否则,返回 f a l s e false false

数据约束

  • 1 ≤ w o r d . l e n g t h , p r e f i x . l e n g t h ≤ 2000 1 \le word.length, prefix.length \le 2000 1word.length,prefix.length2000
  • w o r d word word p r e f i x prefix prefix 仅由小写英文字母组成
  • insertsearchstartsWith 调用次数 总计 不超过 3 × 1 0 4 3 \times 10 ^ 4 3×104

解题过程

前缀树模板题,要求实现的功能比较局限且数据范围不是很大,用类定义就可以。
这种做法需要在每个树节点中开一个长度和字符种类一致的数组,本题中表现为 26 26 26叉树,当数据量很大时,冗余的空间会膨胀得很厉害。
还有一种使用静态二维数组的写法,但是测试用例之间需要清空数组,和这道题的提交方式有点冲突,等遇到要用的时候再练习。

具体实现

class TreeNode {
    TreeNode[] path = new TreeNode[26];
    boolean end;
}

class Trie {
    private TreeNode root;

    public Trie() {
        root = new TreeNode();
    }
    
    public void insert(String word) {
        TreeNode cur = root;
        for(char c : word.toCharArray()) {
            c -= 'a';
            // 如果当前字符位置不存在路径,那么给它简历一个新结点
            if(cur.path[c] == null) {
                cur.path[c] = new TreeNode();
            }
            // 移动工作指针
            cur = cur.path[c];
        }
        cur.end = true;
    }
    
    public boolean search(String word) {
        return find(word) == 1;
    }
    
    public boolean startsWith(String prefix) {
        return find(prefix) != 0;
    }

    private int find(String word) {
        TreeNode cur = root;
        for(char c : word.toCharArray()) {
            c -= 'a';
            if(cur.path[c] == null) {
                return 0;
            }
            cur = cur.path[c];
        }
        // 返回 1 表示这个单词在此结束,2 表示这个字母不是单词的结尾
        return cur.end ? 1 : 2;
    }
}

/**
 * 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);
 */

http://www.kler.cn/a/458606.html

相关文章:

  • 【prometheus】【blackbox_exporter】grafna导入blackbox_exporter看板配置
  • 机器学习算法基础知识1:决策树
  • ubuntu 如何使用vrf
  • 超大规模分类(一):噪声对比估计(Noise Contrastive Estimation, NCE)
  • 简易屏幕共享工具-基于WebSocket
  • Apache Commons Pool :介绍与使用
  • LeetCode 876:链表的中间节点
  • 典型常见的基于知识蒸馏的目标检测方法总结三
  • Langchain Chat Model 和 Chat Prompt Template
  • 【Axios】如何在Vue中使用Axios请求拦截器
  • Flutter DragTarget拖拽控件详解
  • Effective C++ 条款30:透彻了解 inlining 的里里外外
  • vue 中 ref 详解
  • 移动机器人推动制造业向自动化转升级
  • 数据仓库和数据湖 数据仓库和数据库
  • AI写标书工具:高效智能的标书撰写助手——标小兔
  • 高效设计AI Prompt:10大框架详细对比与应用
  • 【K8S系列】深入解析K8S服务的无状态与有状态
  • CPU、DPU、GPU
  • 华三与华为ACL,及ACL+QOS的区别
  • windows C#-使用对象初始值设定项初始化对象
  • Excel for Finance 04 `IFERROR` 函数
  • ROUGE指标在自然语言处理中的应用:从理论到实践
  • 影刀进阶指令 | liblib反推 (SD AI绘图反推)
  • 基于Springboot的高校宣讲会管理系统设计与实现
  • 【VSCode】工作区及设置