forked from neetcode-gh/leetcode
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0208-implement-trie-prefix-tree.py
48 lines (43 loc) · 1.23 KB
/
0208-implement-trie-prefix-tree.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
classTrieNode:
def__init__(self):
self.children= [None] *26
self.end=False
classTrie:
def__init__(self):
"""
Initialize your data structure here.
"""
self.root=TrieNode()
definsert(self, word: str) ->None:
"""
Inserts a word into the trie.
"""
curr=self.root
forcinword:
i=ord(c) -ord("a")
ifcurr.children[i] ==None:
curr.children[i] =TrieNode()
curr=curr.children[i]
curr.end=True
defsearch(self, word: str) ->bool:
"""
Returns if the word is in the trie.
"""
curr=self.root
forcinword:
i=ord(c) -ord("a")
ifcurr.children[i] ==None:
returnFalse
curr=curr.children[i]
returncurr.end
defstartsWith(self, prefix: str) ->bool:
"""
Returns if there is any word in the trie that starts with the given prefix.
"""
curr=self.root
forcinprefix:
i=ord(c) -ord("a")
ifcurr.children[i] ==None:
returnFalse
curr=curr.children[i]
returnTrue