剑指 Offer II 062. 实现前缀树
大约 2 分钟
剑指 Offer II 062. 实现前缀树
- 标签:设计、字典树、哈希表、字符串
- 难度:中等
题目链接
题目大意
要求:实现前缀树数据结构的相关类 Trie
类。
Trie
类:
Trie()
初始化前缀树对象。void insert(String word)
向前缀树中插入字符串word
。boolean search(String word)
如果字符串word
在前缀树中,返回True
(即,在检索之前已经插入);否则,返回False
。boolean startsWith(String prefix)
如果之前已经插入的字符串word
的前缀之一为prefix
,返回True
;否则,返回False
。
解题思路
前缀树(字典树)是一棵多叉数,其中每个节点包含指向子节点的指针数组 children
,以及布尔变量 isEnd
。children
用于存储当前字符节点,一般长度为所含字符种类个数,也可以使用哈希表代替指针数组。isEnd
用于判断该节点是否为字符串的结尾。
下面依次讲解插入、查找前缀的具体步骤:
插入字符串:
- 从根节点开始插入字符串。对于待插入的字符,有两种情况:
- 如果该字符对应的节点存在,则沿着指针移动到子节点,继续处理下一个字符。
- 如果该字符对应的节点不存在,则创建一个新的节点,保存在
children
中对应位置上,然后沿着指针移动到子节点,继续处理下一个字符。
- 重复上述步骤,直到最后一个字符,然后将该节点标记为字符串的结尾。
查找前缀:
- 从跟姐点开始查找前缀,对于待查找的字符,有两种情况:
- 如果该字符对应的节点存在,则沿着指针移动到子节点,继续查找下一个字符。
- 如果该字符对应的节点不存在,则说明字典树中不包含该前缀,直接返回空指针。
- 重复上述步骤,直到最后一个字符搜索完毕,则说明字典树中存在该前缀。
代码
class Trie:
def __init__(self):
"""
Initialize your data structure here.
"""
self.children = dict()
self.isEnd = False
def insert(self, word: str) -> None:
"""
Inserts a word into the trie.
"""
cur = self
for ch in word:
if ch not in cur.children:
cur.children[ch] = Trie()
cur = cur.children[ch]
cur.isEnd = True
def search(self, word: str) -> bool:
"""
Returns if the word is in the trie.
"""
cur = self
for ch in word:
if ch not in cur.children:
return False
cur = cur.children[ch]
return cur is not None and cur.isEnd
def startsWith(self, prefix: str) -> bool:
"""
Returns if there is any word in the trie that starts with the given prefix.
"""
cur = self
for ch in prefix:
if ch not in cur.children:
return False
cur = cur.children[ch]
return cur is not None