-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThreaded_Binary_Tree.cpp
283 lines (231 loc) · 5.27 KB
/
Threaded_Binary_Tree.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/*
Title : Program in C++ to implement threaded Binary Tree
*/
#include <iostream>
#include <cstdlib>
#define MAX_VALUE 65536
using namespace std;
class node
{
public:
int key;
node *left, *right;
bool lthread, rthread;
};
class TBST
{
private:
node *root;
public:
TBST()
{
root = new node();
root->right = root->left = root;
root->lthread = true;
root->key = MAX_VALUE;
}
void insert(int key)
{
node *p = root;
for (;;)
{
if (p->key < key)
{
if (p->rthread)
break;
p = p->right;
}
else if (p->key > key)
{
if (p->lthread)
break;
p = p->left;
}
else
{
return;
}
}
node *tmp = new node;
tmp->key = key;
tmp->rthread = tmp->lthread = true;
if (p->key < key)
{
tmp->right = p->right;
tmp->left = p;
p->right = tmp;
p->rthread = false;
}
else
{
tmp->right = p;
tmp->left = p->left;
p->left = tmp;
p->lthread = false;
}
}
void display()
{
node *tmp = root, *p;
for (;;)
{
p = tmp;
tmp = tmp->right;
if (!p->rthread)
{
while (!tmp->lthread)
{
tmp = tmp->left;
}
}
if (tmp == root)
{
break;
}
cout << tmp->key << " ";
}
cout << endl;
}
bool search(int key)
{
node *tmp = root->left;
for (;;)
{
if (tmp->key < key)
{
if (tmp->rthread)
return false;
tmp = tmp->right;
}
else if (tmp->lthread)
{
if (tmp->lthread)
{
return false;
}
tmp = tmp->left;
}
else
{
return true;
}
}
}
};
int main()
{
int val, k, z, g;
TBST o;
do
{
cout << "\n Which operation do you want to perform -->";
cout << "\n\t 1. Insert \n\t 2.Display \n\t 3. Search -->> ";
cin >> k;
switch (k)
{
case 1:
do
{
cout << "\n Enter a Value you want to insert -->> ";
cin >> val;
o.insert(val);
cout << "\n Do you want to ADD--> \n\t 1. YES 2. NO -->> ";
cin >> g;
} while (g != 2);
break;
case 2:
cout << "-----------------------* DISPLAY*------------------------------";
cout << "\n Display --> \n\t||";
o.display();
cout << " ||";
cout << "\n\n---------------------------------------------------------------";
break;
case 3:
cout << "-----------------------* SEARCH *------------------------------";
cout << "\n\n Enter Key you want to search -->> ";
cin >> val;
if (o.search(val) == true)
{
cout << "\n --> Key " << val << " is found...." << endl;
}
else
{
cout << "\n --> Key ||" << val << " ||is NOt-found !!!!!!!!!!" << endl;
}
cout << "\n\n---------------------------------------------------------------";
break;
}
cout << "\n Do you want to contineu \n\t 1. YES 2. NO -->> ";
cin >> z;
} while (z != 2);
return 0;
}
/*
Which operation do you want to perform -->
1. Insert
2.Display
3. Search -->> 1
Enter a Value you want to insert -->> 50
Do you want to ADD-->
1. YES 2. NO -->> 1
Enter a Value you want to insert -->> 20
Do you want to ADD-->
1. YES 2. NO -->> 1
Enter a Value you want to insert -->> 10
Do you want to ADD-->
1. YES 2. NO -->> 1
Enter a Value you want to insert -->> 30
Do you want to ADD-->
1. YES 2. NO -->> 1
Enter a Value you want to insert -->> 60
Do you want to ADD-->
1. YES 2. NO -->> 1
Enter a Value you want to insert -->> 40
Do you want to ADD-->
1. YES 2. NO -->> 1
Enter a Value you want to insert -->> 70
Do you want to ADD-->
1. YES 2. NO -->> 1
Enter a Value you want to insert -->> 80
Do you want to ADD-->
1. YES 2. NO -->> 1
Enter a Value you want to insert -->> 90
Do you want to ADD-->
1. YES 2. NO -->> 1
Enter a Value you want to insert -->> 100
Do you want to ADD-->
1. YES 2. NO -->> 2
Do you want to contineu
1. YES 2. NO -->> 1
Which operation do you want to perform -->
1. Insert
2.Display
3. Search -->> 2
-----------------------* DISPLAY*------------------------------
Display -->
||10 20 30 40 50 60 70 80 90 100
||
---------------------------------------------------------------
Do you want to contineu
1. YES 2. NO -->> 1
Which operation do you want to perform -->
1. Insert
2.Display
3. Search -->> 3
-----------------------* SEARCH *------------------------------
Enter Key you want tot search -->> 10
--> Key 10 is found....
---------------------------------------------------------------
Do you want to contineu
1. YES 2. NO -->> 1
Which operation do you want to perform -->
1. Insert
2.Display
3. Search -->> 3
-----------------------* SEARCH *------------------------------
Enter Key you want tot search -->> 101
--> Key ||101 ||is NOt-found !!!!!!!!!!
---------------------------------------------------------------
Do you want to contineu
1. YES 2. NO -->> 2
*/