forked from v-mipeng/LexiconAugmentedNER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trie.py
44 lines (35 loc) · 1.12 KB
/
trie.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
import collections
class TrieNode:
# Initialize your data structure here.
def __init__(self):
self.children = collections.defaultdict(TrieNode)
self.is_word = False
class Trie:
def __init__(self):
self.root = TrieNode()
def insert(self, word):
current = self.root
for letter in word:
current = current.children[letter]
current.is_word = True
def search(self, word):
current = self.root
for letter in word:
current = current.children.get(letter)
if current is None:
return False
return current.is_word
def startsWith(self, prefix):
current = self.root
for letter in prefix:
current = current.children.get(letter)
if current is None:
return False
return True
def enumerateMatch(self, word, space="_", backward=False): #space=‘’
matched = []
while len(word) > 0:
if self.search(word):
matched.append(space.join(word[:]))
del word[-1]
return matched