-
Notifications
You must be signed in to change notification settings - Fork 15
/
A3.cpp
229 lines (210 loc) · 3.85 KB
/
A3.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
#include<iostream>
using namespace std;
class node
{
int data;
int lbit, rbit;
node *lchild, *rchild;
public:
node()
{
data = 0;
lchild = rchild = NULL;
}
node(int data)
{
this->data = data;
}
friend class tbst;
};
class tbst
{
node *root;
node *current;
bool directionRight;
bool directionLeft;
public:
tbst()
{
root = new node(1);
root->lbit = 0;
root->rbit = 1;
root->lchild = root->rchild = root;
///////////////////////////
bool directionRight = false;
bool directionLeft = false;
}
void create(int data)
{
node* nod = new node(data);
if (root->lchild == root &&root->rchild == root) //then always node attached to lchild && start building tree from this node
{
nod->lbit = root->lbit;
nod->lchild = root->lchild;
root->lchild = nod;
root->lbit = 1;
nod->rbit = 0;
nod->rchild = root;
}
else {
current = root->lchild;
while (true)
{
if (nod->data < current->data)
{
if (current->lbit == 0)
{
directionLeft = true;
directionRight = false;
break;
}
else
current = current->lchild;
}
else if (nod->data > current->data)
{
if (current->rbit == 0)
{
directionLeft = false;
directionRight = true;
break;
}
else
current = current->rchild;
}
else
{
cout<<"\nAlready Exists. Duplicate entries not allowed";
return;
}
}
if (directionLeft)
{
nod->lbit = current->lbit;
nod->lchild = current->lchild;
current->lchild = nod;
current->lbit = 1;
nod->rbit = 0;
nod->rchild = current;
}
else if (directionRight)
{
nod->rbit = current->rbit;
nod->rchild = current->rchild;
current->rchild = nod;
current->rbit = 1;
nod->lbit = 0;
nod->lchild = current;
}
else
{
cout << "fail";
}
}
cout << "node added";
}
void insert()
{
char ch='y';
int value;
do{
cout<<"Enter the data";
cin>>value;
create(value);
cout<<"Do you want to continue...";
cin>>ch;
}while(ch!='n');
}
node* ro()
{
return root;
}
void InOrderRecursive( node* temp)
{
if (temp != root) {
if (temp->lbit != 0)
InOrderRecursive(temp->lchild);
cout << temp->data<<"\t";
if (temp->rbit != 0)
InOrderRecursive(temp->rchild);
}
}
void InOrder()
{
current = root->lchild;
while (current->lbit == 1)
{
current = current->lchild;
}
while (current != root)
{
cout << current->data << "\t";
current = nextInOrder(current);
}
}
node* nextInOrder(node* current)
{
if (current->rbit == 0) {
return current->rchild; //inorder successor
}
current = current->rchild;
while (current->lbit == 1)
{
current = current->lchild;
}
return current;
}
void preorder()
{
current=root->lchild;
cout<<current->data<<"\t";
while(current!=root)
{
while(current->lbit!=0)
{
current=current->lchild;
cout<<current->data<<"\t";
}
while(current->rbit==0)
current=current->rchild;
current=current->rchild;
if(current!=root)
cout<<current->data<<"\t";
}
}
};
int main()
{
tbst p;
p.insert();
cout<<"Inorder:";
p.InOrder();
cout<<endl<<"Preorder:";
p.preorder();
return 0;
}
/*
shreyas@shreyas:~/2416$ g++ A3.cpp
shreyas@shreyas:~/2416$ ./a.out
Enter the data2
node addedDo you want to continue...1
Enter the data6
node addedDo you want to continue...1
Enter the data9
node addedDo you want to continue...1
Enter the data5
node addedDo you want to continue...1
Enter the data1
node addedDo you want to continue...1
Enter the data7
node addedDo you want to continue...1
Enter the data12
node addedDo you want to continue...1
Enter the data18
node addedDo you want to continue...1
Enter the data16
node addedDo you want to continue...n
Inorder:1 2 5 6 7 9 12 16 18
Preorder:2 1 6 5 9 7 12 18 16 shreyas@shreyas:~/2416$ ^C
shreyas@shreyas:~/2416$
*/