forked from jainaman224/Algo_Ds_Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Trie.cpp
154 lines (121 loc) · 2.59 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
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
#include <iostream>
using namespace std;
struct node
{
node *alphabet[26];
bool isLeaf;
} *root = NULL;
node *getNode()
{
node *temp = new node();
temp -> isLeaf = false;
for(int i = 0; i < 26; i++)
{
temp -> alphabet[i] = NULL;
}
return temp;
}
void insert(string a)
{
if(root == NULL)
root = getNode();
node *current = root;
for(unsigned int i = 0; i < a.length(); i++)
{
a[i] = tolower(a[i]);
if(current -> alphabet[int(a[i]) - 97] == NULL)
{
node *new_node = getNode();
current -> alphabet[int(a[i]) - 97] = new_node;
current = new_node;
}
else
current = current -> alphabet[int(a[i]) - 97];
}
current -> isLeaf = true;
}
void search(string a)
{
if(root == NULL)
cout << "There is no word in Trie" << endl;
node *current = root;
unsigned int i;
for(i = 0; i < a.length(); i++)
{
a[i] = tolower(a[i]);
if(current -> alphabet[int(a[i] - 'a')] == NULL)
{
break;
}
else
current = current -> alphabet[int(a[i] - 'a')];
}
if(i == a.length() && current -> isLeaf == true)
cout << a << " Found" << endl;
else
cout << a << " Not Present" << endl;
}
bool isFreeNode(node *root)
{
for(int i = 0; i < 26; i++)
{
if(root -> alphabet[i] != NULL)
return false;
}
return true;
}
bool removeWord(node *root, string a, unsigned int i)
{
if(root)
{
if(i == a.length())
{
if(root -> isLeaf)
{
root -> isLeaf = false;
if(isFreeNode(root))
return true;
}
return false;
}
else
{
a[i] = tolower(a[i]);
if(removeWord(root -> alphabet[int(a[i]) - 97], a, i + 1))
{
delete root -> alphabet[int(a[i]) - 97];
root -> alphabet[int(a[i]) - 97] = NULL;
return (!root -> isLeaf && isFreeNode(root));
}
}
}
return false;
}
void remove(string a)
{
if(a.length() && root != NULL)
removeWord(root, a, 0);
}
int main()
{
string a = "aman", b = "akshit", c = "adish", d = "akshay", e = "akash";
insert(a);
insert(b);
insert(c);
insert(d);
insert(e);
search(a);
search(b);
search(e);
search("swati");
remove(a);
search(a);
return 0;
}
/* Output
aman Found
akshit Found
akash Found
swati Not Present
aman Not Present
*/