-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSuffixTrie.cpp
57 lines (52 loc) · 1.6 KB
/
SuffixTrie.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
#include <bits/stdc++.h>
using namespace std;
class TrieNode {
public :
unordered_map<char, TrieNode*> children;
};
class SuffixTrie {
public:
char endSymbol;
TrieNode *root;
SuffixTrie(string str) {
this->endSymbol = '*';
this->root = new TrieNode();
this->populateSuffixTrieFrom(str);
}
// time: O(N^2) Space: O(N^2)
void populateSuffixTrieFrom(string str) {
for(int i = 0; i < str.length(); ++i) {
this->insertSubstringStartingAt(i, str);
}
}
void insertSubstringStartingAt(int i, string str) {
TrieNode *node = this->root;
for(int j = i; j < str.length(); ++j) {
char letter = str[j];
if(node->children.find(letter) == node->children.end()) {
TrieNode *newNode = new TrieNode();
node->children.insert({letter, newNode});
}
node = node->children[letter];
}
node->children.insert({this->endSymbol, nullptr});
}
// time: O(M) Space: O(1)
bool contains(string str) {
TrieNode *node = this->root;
for(char letter : str) {
if(node->children.find(letter) == node->children.end()) {
return false;
}
node = node->children[letter];
}
return node->children.find(this->endSymbol) != node->children.end();
}
};
int main() {
// SuffixTrie st = *new SuffixTrie("babc");
// cout << st.contains("bc") << endl;
SuffixTrie *st = new SuffixTrie("babc");
cout << st->contains("bc") << endl;
}
// suffix substrings only