forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stream-of-characters2.py
82 lines (64 loc) · 2.73 KB
/
stream-of-characters2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Time: ctor: O(n + p^2), n is the total size of patterns
# , p is the number of patterns
# query: O(m + z), m is the total size of query string
# , z is the number of all matched strings
# , query time would be O(m) if we don't use all the matched patterns
# Space: O(t + p^2), t is the total size of ac automata trie
# , space could be further improved by DAT (double-array trie)
# Aho–Corasick automata
# reference:
# - http://web.stanford.edu/class/archive/cs/cs166/cs166.1166/lectures/02/Small02.pdf
# - http://algo.pw/algo/64/python
import collections
class AhoNode(object):
def __init__(self):
self.children = collections.defaultdict(AhoNode)
self.suffix = None
self.outputs = []
class AhoTrie(object):
def step(self, letter):
while self.__node and letter not in self.__node.children:
self.__node = self.__node.suffix
self.__node = self.__node.children[letter] if self.__node else self.__root
return self.__node.outputs # Time: O(z), it would be O(m) if we don't use all the matched patterns
def __init__(self, patterns):
self.__root = self.__create_ac_trie(patterns)
self.__node = self.__create_ac_suffix_and_output_links(self.__root)
def __create_ac_trie(self, patterns): # Time: O(n), Space: O(t)
root = AhoNode()
for i, pattern in enumerate(patterns):
node = root
for c in pattern:
node = node.children[c]
node.outputs.append(i)
return root
def __create_ac_suffix_and_output_links(self, root): # Time: O(n + p^2), Space: O(t + p^2)
queue = collections.deque()
for node in root.children.itervalues():
queue.append(node)
node.suffix = root
while queue:
node = queue.popleft()
for c, child in node.children.iteritems():
queue.append(child)
suffix = node.suffix
while suffix and c not in suffix.children:
suffix = suffix.suffix
child.suffix = suffix.children[c] if suffix else root
child.outputs += child.suffix.outputs # Time: O(p^2)
return root
class StreamChecker(object):
def __init__(self, words):
"""
:type words: List[str]
"""
self.__trie = AhoTrie(words)
def query(self, letter): # O(m) times
"""
:type letter: str
:rtype: bool
"""
return len(self.__trie.step(letter)) > 0
# Your StreamChecker object will be instantiated and called as such:
# obj = StreamChecker(words)
# param_1 = obj.query(letter)