-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathPrefix_and_Suffix_Search.cpp
130 lines (118 loc) · 4.1 KB
/
Prefix_and_Suffix_Search.cpp
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
class WordFilter {
class Trie {
static const int SIZE = 26;
private:
struct trieNode {
int weight;
trieNode* children[SIZE];
trieNode(): weight(-1) {
for(int i = 0; i < SIZE; ++i) {
children[i] = nullptr;
}
}
~trieNode() {
for(int i = 0; i < SIZE; ++i) {
delete children[i];
children[i] = nullptr;
}
}
};
trieNode* root;
public:
Trie(): root(new trieNode()) {
}
~Trie() {
delete root;
root = nullptr;
}
void insert(string const& key, int weight, bool reverse = false) {
trieNode* pCrawl = root;
if(!reverse) {
for(int i = 0; i < key.length(); ++i) {
int indx = key[i] - 'a';
if(!pCrawl->children[indx]) {
pCrawl->children[indx] = new trieNode();
}
pCrawl = pCrawl->children[indx];
}
pCrawl->weight = weight;
return;
}
for(int i = key.length() - 1; i >= 0; --i) {
int indx = key[i] - 'a';
if(!pCrawl->children[indx]) {
pCrawl->children[indx] = new trieNode();
}
pCrawl = pCrawl->children[indx];
}
pCrawl->weight = weight;
}
void searchUtil(trieNode* pCrawl, unordered_set<int>& prefixMatchedSet) {
if(pCrawl->weight != -1) {
prefixMatchedSet.insert(pCrawl->weight);
}
for(int i = 0; i < SIZE; i++) {
if(pCrawl->children[i]) {
searchUtil(pCrawl->children[i], prefixMatchedSet);
}
}
}
void search(string const& prefix, unordered_set<int>& prefixMatchedSet) {
trieNode *pCrawl = root;
for(int i = 0; i < prefix.length(); ++i) {
int indx = prefix[i] - 'a';
if(!pCrawl->children[indx]) {
return;
}
pCrawl = pCrawl->children[indx];
}
searchUtil(pCrawl, prefixMatchedSet);
}
int searchUtil2(trieNode* pCrawl, unordered_set<int>& prefixMatchedSet) {
int weight = -1;
if(pCrawl->weight != -1) {
if(prefixMatchedSet.find(pCrawl->weight) != prefixMatchedSet.end()) {
weight = max(weight, pCrawl->weight);
}
}
for(int i = 0; i < SIZE; i++) {
if(pCrawl->children[i]) {
weight = max(weight, searchUtil2(pCrawl->children[i], prefixMatchedSet));
}
}
return weight;
}
int search2(string const& suffix, unordered_set<int>& prefixMatchedSet) {
trieNode *pCrawl = root;
for(int i = suffix.length() - 1; i >= 0; --i) {
int indx = suffix[i] - 'a';
if(!pCrawl->children[indx]) {
return -1;
}
pCrawl = pCrawl->children[indx];
}
return searchUtil2(pCrawl, prefixMatchedSet);
}
};
Trie* prefixTrie;
Trie* suffixTrie;
public:
WordFilter(vector<string> words) {
prefixTrie = new Trie();
suffixTrie = new Trie();
for(int i = 0; i < words.size(); i++) {
prefixTrie->insert(words[i], i);
suffixTrie->insert(words[i], i, true);
}
}
int f(string prefix, string suffix) {
unordered_set<int> prefixMatchedSet;
prefixTrie->search(prefix, prefixMatchedSet);
return suffixTrie->search2(suffix, prefixMatchedSet);
}
};
/**
* Your WordFilter object will be instantiated and called as such:
* WordFilter obj = new WordFilter(words);
* int param_1 = obj.f(prefix,suffix);
*/