-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathTrie_data_structure.cpp
199 lines (159 loc) · 4.78 KB
/
Trie_data_structure.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
#include <iostream>
using namespace std;
// Define the character size
#define CHAR_SIZE 128
// A class to store a Trie node
class Trie
{
public:
bool isLeaf;
Trie* character[CHAR_SIZE];
// Constructor
Trie()
{
this->isLeaf = false;
for (int i = 0; i < CHAR_SIZE; i++) {
this->character[i] = nullptr;
}
}
void insert(string);
bool deletion(Trie*&, string);
bool search(string);
bool haveChildren(Trie const*);
};
// Iterative function to insert a key into a Trie
void Trie::insert(string key)
{
// start from the root node
Trie* curr = this;
for (int i = 0; i < key.length(); i++)
{
// create a new node if the path doesn't exist
if (curr->character[key[i]] == nullptr) {
curr->character[key[i]] = new Trie();
}
// go to the next node
curr = curr->character[key[i]];
}
// mark the current node as a leaf
curr->isLeaf = true;
}
// Iterative function to search a key in a Trie. It returns true
// if the key is found in the Trie; otherwise, it returns false
bool Trie::search(string key)
{
// return false if Trie is empty
if (this == nullptr) {
return false;
}
Trie* curr = this;
for (int i = 0; i < key.length(); i++)
{
// go to the next node
curr = curr->character[key[i]];
// if the string is invalid (reached end of a path in the Trie)
if (curr == nullptr) {
return false;
}
}
// return true if the current node is a leaf and the
// end of the string is reached
return curr->isLeaf;
}
// Returns true if a given node has any children
bool Trie::haveChildren(Trie const* curr)
{
for (int i = 0; i < CHAR_SIZE; i++)
{
if (curr->character[i]) {
return true; // child found
}
}
return false;
}
// Recursive function to delete a key in the Trie
bool Trie::deletion(Trie*& curr, string key)
{
// return if Trie is empty
if (curr == nullptr) {
return false;
}
// if the end of the key is not reached
if (key.length())
{
// recur for the node corresponding to the next character in the key
// and if it returns true, delete the current node (if it is non-leaf)
if (curr != nullptr &&
curr->character[key[0]] != nullptr &&
deletion(curr->character[key[0]], key.substr(1)) &&
curr->isLeaf == false)
{
if (!haveChildren(curr))
{
delete curr;
curr = nullptr;
return true;
}
else {
return false;
}
}
}
// if the end of the key is reached
if (key.length() == 0 && curr->isLeaf)
{
// if the current node is a leaf node and doesn't have any children
if (!haveChildren(curr))
{
// delete the current node
delete curr;
curr = nullptr;
// delete the non-leaf parent nodes
return true;
}
// if the current node is a leaf node and has children
else {
// mark the current node as a non-leaf node (DON'T DELETE IT)
curr->isLeaf = false;
// don't delete its parent nodes
return false;
}
}
return false;
}
// C++ implementation of Trie data structure
int main()
{
Trie* head = new Trie();
head->insert("hello");
cout << head->search("hello") << " "; // print 1
head->insert("helloworld");
cout << head->search("helloworld") << " "; // print 1
cout << head->search("helll") << " "; // print 0 (Not found)
head->insert("hell");
cout << head->search("hell") << " "; // print 1
head->insert("h");
cout << head->search("h"); // print 1
cout << endl;
head->deletion(head, "hello");
cout << head->search("hello") << " "; // print 0
cout << head->search("helloworld") << " "; // print 1
cout << head->search("hell"); // print 1
cout << endl;
head->deletion(head, "h");
cout << head->search("h") << " "; // print 0
cout << head->search("hell") << " "; // print 1
cout << head->search("helloworld"); // print 1
cout << endl;
head->deletion(head, "helloworld");
cout << head->search("helloworld") << " "; // print 0
cout << head->search("hell") << " "; // print 1
head->deletion(head, "hell");
cout << head->search("hell"); // print 0
cout << endl;
if (head == nullptr) {
cout << "Trie empty!!\n"; // Trie is empty now
}
cout << head->search("hell"); // print 0
return 0;
}