当前位置:网站首页>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)
边栏推荐
- Force buckle - sum of two numbers
- 整合阿里云短信的问题:无法从静态上下文中引用非静态方法
- Are you still wasting brain cells for self-study? This interview note is definitely the ceiling of station C
- 静态库使用MFC和共享库使用MFC的区别
- Addition without addition, subtraction, multiplication and division
- 实现pow(x,n)函数
- 10、Scanner.next() 无法读取空格/indexOf -1
- 5. [WebGIS practice] software operation - service release and permission management
- 串口接收数据方案设计
- Bilinear upsampling and f.upsample in pytorch_ bilinear
猜你喜欢

报错:Plug-ins declaring extensions or extension points must set the singleton directive to true

TEC: Knowledge Graph Embedding with Triple Context

Appium自动化测试基础 — APPium基本原理

Feign remote call and getaway gateway

ASGNet论文和代码解读2

在线公网安备案保姆级教程【伸手党福利】
![5. [WebGIS practice] software operation - service release and permission management](/img/5d/070e207bd96e60ba1846d644d4fb54.png)
5. [WebGIS practice] software operation - service release and permission management

The combination of applet container technology and IOT

5、【WebGIS实战】软件操作篇——服务发布及权限管理

Gorilla/mux framework (RK boot): RPC error code design
随机推荐
[party benefits] jsonobject to string, leave blank
E15 solution for cx5120 controlling Huichuan is620n servo error
数据交换 JSON
线程数据共享和安全 -ThreadLocal
C语言的sem_t变量类型
【EI会议】2022年国际土木与海洋工程联合会议(JCCME 2022)
How do I use Google Chrome 11's Upload Folder feature in my own code?
家居网购项目
The method to measure the similarity of two vectors: cosine similarity, pytorch calculate cosine similarity: torch nn. CosineSimilarity(dim=1, eps=1e-08)
Leetcode 1482 guess, how about this question?
Database DDL (data definition language) knowledge points
打包iso文件的话,怎样使用hybrid格式输出?isohybrid:command not found
Feign remote call and getaway gateway
还在浪费脑细胞自学吗,这份面试笔记绝对是C站天花板
排序链表(归并排序)
岭回归和lasso回归
Ouc2021 autumn - Software Engineering - end of term (recall version)
小程序容器技术与物联网IoT的结合点
4. [WebGIS practice] software operation chapter - data import and processing
二叉树神级遍历:Morris遍历