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
|
class Trie {
private:
vector<Trie*> child;
bool is_end;
public:
Trie(): child(26), is_end(false) {}
Trie* searchPrefix(string prefix) {
Trie* node = this;
for (char ch : prefix) {
ch -= 'a';
if (node->child[ch] == nullptr) {
return nullptr;
}
node = node->child[ch];
}
return node;
}
void insert(string word) {
Trie* node = this;
for (char ch : word) {
ch -= 'a';
if (node->child[ch] == nullptr) {
node->child[ch] = new Trie();
}
node = node->child[ch];
}
node->is_end = true;
}
bool search(string word) {
Trie* node = searchPrefix(word);
return node != nullptr && node->is_end;
}
bool startsWith(string prefix) {
return searchPrefix(prefix) != nullptr;
}
};
/**
* Your Trie object will be instantiated and called as such:
* Trie* obj = new Trie();
* obj->insert(word);
* bool param_2 = obj->search(word);
* bool param_3 = obj->startsWith(prefix);
*/
|