-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTrie.cpp
56 lines (56 loc) · 1.06 KB
/
Trie.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
// 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;
}
};