-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTrie.cpp
More file actions
63 lines (63 loc) · 1.42 KB
/
Trie.cpp
File metadata and controls
63 lines (63 loc) · 1.42 KB
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
// source: https://gist.github.com/hrsvrdhn/1ae71c25ef1c620c022a544d52df8928
struct Trie {
map<char,Trie*> children;
int prefixes;
bool endofword;
Trie() {
prefixes=0;
endofword=false;
}
void insert(string word) {
Trie *current=this;
for(int i=0;i<word.size();i++) {
char ch=word[i];
Trie *node=current->children[ch];
if(!node) {
node=new Trie();
current->children[word[i]]=node;
}
current=node;
current->prefixes++;
}
current->endofword=true;
}
bool search(string word) {
Trie *current=this;
for(int i=0;i<word.size();i++) {
char ch=word[i];
Trie *node=current->children[ch];
if(!node)
return false;
current=node;
}
return current->endofword;
}
int countPrefix(string word) {
Trie *current=this;
for(int i=0;i<word.size();i++) {
char ch=word[i];
Trie *node=current->children[ch];
if(!node) {
return 0;
}
current=node;
}
return current->prefixes;
}
void erase(string word) {
if (!search(word)) return;
Trie *current = this;
for(int i = 0; i < word.size(); i++) {
char ch = word[i];
Trie *node = current->children[ch];
node->prefixes--;
if (node->prefixes == 0) {
current->children.erase(ch);
delete node;
return;
}
current = node;
}
current->endofword = false;
}
};