-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path208ImplementTrie(PrefixTree).py
49 lines (42 loc) · 1.04 KB
/
208ImplementTrie(PrefixTree).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
49
class Trie(object):
def __init__(self):
self.database = dict()
self.flag = '-'
def insert(self, word):
"""
:type word: str
:rtype: None
"""
note = self.database
for i in word:
if i not in note:
note[i] = {}
note = note[i]
note[self.flag] = True
def search(self, word):
"""
:type word: str
:rtype: bool
"""
note = self.database
for i in word:
if i not in note:
return False
note = note[i]
return self.flag in note
def startsWith(self, prefix):
"""
:type prefix: str
:rtype: bool
"""
note = self.database
for i in prefix:
if i not in note:
return False
note = note[i]
return True
# 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)