-
Notifications
You must be signed in to change notification settings - Fork 1
/
TrieNode_template.cpp
91 lines (69 loc) · 2.04 KB
/
TrieNode_template.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
#include<iostream>
using namespace std;
struct TrieNode {
TrieNode *letter[26];
bool wordEnd;
TrieNode() {
wordEnd = false;
for(int index = 0; index < 26; index++) {
letter[index] = NULL;
}
}
};
class Trie {
public:
TrieNode *root;
Trie() {
root = new TrieNode();
}
void insert(string word) {
TrieNode *currRoot = root;
for(int index = 0; index < word.length(); index++) {
char currChar = word[index];
if(currRoot->letter[currChar - 'a'] != NULL) {
currRoot = currRoot->letter[currChar - 'a'];
} else {
currRoot->letter[currChar - 'a'] = new TrieNode();
currRoot = currRoot->letter[currChar - 'a'];
}
}
currRoot->wordEnd = true;
}
bool search(string word) {
TrieNode *currRoot = root;
for(int index = 0; index < word.length(); index++) {
char currChar = word[index];
if(currRoot->letter[currChar - 'a'] != NULL) {
currRoot = currRoot->letter[currChar - 'a'];
} else {
return false;
}
}
return currRoot->wordEnd;
}
bool startsWith(string prefix) {
TrieNode *currRoot = root;
for(int index = 0; index < prefix.length(); index++) {
char currChar = prefix[index];
if(currRoot->letter[currChar - 'a'] != NULL) {
currRoot = currRoot->letter[currChar - 'a'];
} else {
return false;
}
}
return true;
}
};
int main() {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
Trie *trie = new Trie();
trie->insert("abcd");
trie->insert("abe");
trie->insert("abc");
cout<<trie->startsWith("b")<<"\n";
cout<<trie->search("abe");
return 0;
}