当前位置:网站首页>208. 实现 Trie (前缀树)
208. 实现 Trie (前缀树)
2022-07-01 03:23:00 【Sun_Sky_Sea】
208. 实现 Trie (前缀树)
原始题目链接:https://leetcode.cn/problems/implement-trie-prefix-tree/
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
word 和 prefix 仅由小写英文字母组成
insert、search 和 startsWith 调用次数 总计 不超过 3 * 104 次
解题思路:
构建树的节点,使用字典存储子树结构,{word_char: 子树},标识从根节点到当前节点的路径,构成了一个关键词。
代码实现:
class Trie:
def __init__(self):
self.root = Node()
def insert(self, word: str) -> None:
cur_node = self.root
for c in word:
cur_node = cur_node.children[c]
cur_node.flag = True
def search(self, word: str) -> bool:
cur_node = self.root
for c in word:
cur_node = cur_node.children.get(c)
if cur_node == None:
return False
return cur_node.flag
def startsWith(self, prefix: str) -> bool:
cur_node = self.root
for c in prefix:
cur_node = cur_node.children.get(c)
if cur_node == None:
return False
return True
# 定义一个节点
class Node(object):
def __init__(self):
# 使用字典存储子树结构,{word_char: 子树}
self.children = collections.defaultdict(Node)
# 标识从根节点到当前节点的路径,构成了一个关键词
self.flag = False
# Your Trie object will be instantiated and called as such:
# obj = Trie()
# obj.insert(word)
# param_2 = obj.search(word)
# param_3 = obj.startsWith(prefix)
边栏推荐
- 整合阿里云短信的问题:无法从静态上下文中引用非静态方法
- Take you through a circuit board, from design to production (dry goods)
- Cygwin的下载和安装配置
- 打包iso文件的话,怎样使用hybrid格式输出?isohybrid:command not found
- Md5sum operation
- TEC: Knowledge Graph Embedding with Triple Context
- idea插件备份表
- Leetcode 1818 absolute value, sorting, dichotomy, maximum value
- Split(), split(), slice(), can't you tell?
- 服务器渲染技术jsp
猜你喜欢

Avalanche problem and the use of sentinel

Learning notes for introduction to C language multithreaded programming

Develop industrial Internet with the technical advantages of small programs

岭回归和lasso回归

Nacos

小程序容器技术与物联网IoT的结合点

RSN:Learning to Exploit Long-term Relational Dependencies in Knowledge Graphs
![Pyramid scene parsing network [pspnet] thesis reading](/img/05/4645c8a595083479dee6835620335d.png)
Pyramid scene parsing network [pspnet] thesis reading

还在浪费脑细胞自学吗,这份面试笔记绝对是C站天花板

二叉树神级遍历:Morris遍历
随机推荐
10、Scanner. Next() cannot read spaces /indexof -1
SEM of C language_ Tvariable type
还在浪费脑细胞自学吗,这份面试笔记绝对是C站天花板
The combination of applet container technology and IOT
4、【WebGIS实战】软件操作篇——数据导入及处理
pytorch训练深度学习网络设置cuda指定的GPU可见
Split(), split(), slice(), can't you tell?
【EI会议】2022年国际土木与海洋工程联合会议(JCCME 2022)
Keil5中如何做到 0 Error(s), 0 Warning(s).
leetcode 1818 绝对值,排序,二分法,最大值
Detailed explanation of ES6 deconstruction grammar
数据库DDL(Data Definition Language,数据定义语言)知识点
Binary tree god level traversal: Morris traversal
FCN full Convolution Network Understanding and Code Implementation (from pytorch Official Implementation)
Jeecgboot output log, how to use @slf4j
谷粒学院微信扫码登录过程记录以及bug解决
bootsrap中的栅格系统
4. [WebGIS practice] software operation chapter - data import and processing
multiple linear regression
Explain spark operation mode in detail (local+standalone+yarn)