Avl Tree

I Am trying to Implement the avl tree in a different manner I would Like Ur Help and where Am i going wrong


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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388

#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#include<windows.h>

#include <stdlib.h>

void gotoxy(int x, int y)
{
	HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);

	_COORD pos;
	pos.X = x;
	pos.Y = y;

	SetConsoleCursorPosition(hConsole, pos);
}


class node
{
public:
	int data;
	int bfactor;
	node * left;
	node * right;

	node()
	{
		bfactor=0;
		data=0;
		left=NULL;
		right=NULL;
	}
};


 node * temp=NULL;
 int level=0;
 int bfactor1=0;
class AVLTree
{
public:
	node * root;

	AVLTree()
	{ root=NULL; }


	node * LocateParent(int Data,node *Root)
	{
	 node *pNode=Root,*pParent=NULL;
	 
	 while(pNode!=NULL && pNode->data!=Data)
	 {
	  pParent=pNode;
	  if(pNode->data<Data)
	   pNode=pNode->right;
	  else
	   if(pNode->data>Data)
		pNode=pNode->left;
	 }
	 return pParent;
	}
	
	void create()
	{

		for(;;)
		{
		cout<<" Enter a Number ";
		int a;
		cin>>a;

		insert(root,a);
		cout<<"\n Enter More (1/0) ";
		cin>>a;

		int stage = 3;
		int v=(stage-1)*10;

		set_bf(root);

		gotoxy(0,v); cout<<"++++++++++++++++++++++++++++++++++++++++++++++"<<endl;
		display2(0,v+1);
		stage++;

		
		
			for(int z=0;z<1;)
			{
				int check=0;
				node * p,*parent;

				check_bf(root,check,level);

				p=temp;

				level=0;
				bfactor1=0;
				temp=NULL;				
				
				
				if(p!=NULL)
				{
					parent=LocateParent(p->data,root);					

					if(check<0)
					{
						gotoxy(0,(stage-2)*10);
						cout<<"Rotating RIGHT at node"<<p->data<<endl;
						if(parent==NULL)
						root=rotatetoright(p);
						else
						{
							if(parent->right->data==p->data)
							parent->right=rotatetoright(p);
							else
							{
								parent->left=rotatetoright(p);
							}
						}
					}
					else
					{
						gotoxy(0,(stage-2)*10);
						cout<<"Rotating LEFT at node"<<p->data<<endl;
						if(parent==NULL)
						root=rotatetoleft(p);
						else
						{
							if(parent->right->data==p->data)
							parent->right=rotatetoleft(p);
							else
							{
								parent->left=rotatetoleft(p);
							}
						}						
					}					
				}
				else
				{ z=1; }
				set_bf(root);

				v=(stage-1)*10;

				gotoxy(0,v); cout<<"++++++++++++++++++++++++++++++++++++++++++++++"<<endl;
				display2(0,v+1);
				stage++;
			}

			v=(stage-1)*10;

			gotoxy(0,v); cout<<"++++++++++++++++++++++++++++++++++++++++++++++"<<endl;
				display2(0,v+1);
				stage++;		
			cout.flush();
			cout<<endl;

			gotoxy(0,5);
			system("pause");
			system("cls");
			if(a!=1) break;		
		}
		
	}


	void insert(node * &x,int temp)
	{	
		if(x==NULL)
		{
			x=new node;
			x->data=temp;
			return;
		}
		
		/*if(x->data==temp)
		{
			cout<<"\n NO DUPLICATES ALLOWED :) "<<endl;
			return;
		}*/

		else
		{
			if(x->data>temp)
				insert(x->left,temp);
			else
				insert(x->right,temp);
		}	
	}

 
 


	node * rotatetoleft(node * & Root)
	{	
		//cout<<"Roatating LEFT at node"<<Root->data<<endl;

		 node * newroot;

		 newroot=Root->right;
		  Root->right=NULL;
		 
		 if(newroot->left==NULL)
		 {			 
			 newroot->left=Root;
		 }
		 else
		 {			
			node * temp=newroot;
			for(;temp->left!=NULL;)
			{
				temp=temp->left;
			}
			temp->left=Root;
		 }

		 return newroot;
		 
		   

		/*node *nw=Root;

		node * n;
		n=nw->right;
		nw->right=n->left;
		n->left=nw;
		nw=n;
		return nw;*/

			
	}

	node * rotatetoright(node * & Root)
	{
		//cout<<"Roatating Right at node"<<Root->data<<endl;
		
		node * newroot;

		 newroot=Root->left;
		 Root->left=NULL;		 

		 if(newroot->right==NULL)
		 {			 
			 newroot->right=Root;
		 }
		 else
		 {			
			node * temp=newroot;
			for(;temp->right!=NULL;)
			{
				temp=temp->right;
			}
			temp->right=Root;
		 }

		 return newroot;

		/*node *nw=Root;

		node * n;
		n=nw->left;
		nw->left=n->right;
		n->right=nw;
		nw=n;
		return nw;*/
	}

	
	
	int height1(node * p)
	{
        class node * temp=p;
        
		int h1=0,h2=0;
        if(p==NULL) return(0);
        if(p->left)
		{
			h1=height1(p->left);
		}

       if(p->right)
	   {
		   h2=height1(p->right);
	   }

        return(max(h1,h2)+1);
	}

	void check_bf(node * Root,int & check,int lvl)
	{		
		if(Root!=NULL )
		{	
							check_bf(Root->left,check,++lvl);

				check_bf(Root->right,check,++lvl);	

				if(Root->bfactor<-1 || Root->bfactor>1)
				{
					if(lvl>=level)
					{
						if(Root->bfactor<-1) check=-1;
						if(Root->bfactor>1) check=1;						
						temp=Root;
						bfactor1=check;
						level=lvl;
					}
				}				
		}
	}

	void set_bf(node * Root)
	{
		if(Root!=NULL)
		{			
		set_bf(Root->left);		
		
		Root->bfactor=height1(Root->right)-height1(Root->left);		

		set_bf(Root->right);				
		}
	}



	
	void display2(int x,int y)
	{		
		display(root,0,x,y);
	}

	void display(node * Root,int lvl,int &x,int y)
	{
		if(Root!=NULL)
		{
			y++;
		display(Root->left,lvl++,x,y);	
		
		gotoxy(x,y);
		cout<<y-1<<"L"<<Root->bfactor<<"BF";

	
		cout<<Root->data<<"D";		
		
		if(LocateParent(Root->data,root)!=NULL)
		{
			cout<<LocateParent(Root->data,root)->data<<"P";
		}
		cout<<endl;
		x=x+7;

		display(Root->right,lvl++,x,y);				
		}
	}
	int getheight()
	{
		return height1(root);
	}

	void print()
	{
		int x=0,y=0;

		for(;y<5;)
		{
		display2(x,y*10);
		y++;
		}

	}
};

void main()
{
		AVLTree A;
		A.create();

		



}






The Tree Doesnot balance properly at some stages and most of all it breaks rules for being a BS tree ( i.e this is a avl tree along with being a bs tree)
Last edited on
Oh men, I still don't have "code-formating-glasses"

use [code] [\code] tags.
Please My Exam Tommorow
You didn't describe what errors are you receiving?

also your main function must be int main() not void main() and thus return an int.

also your main function must do something useful if you wann "see" some action :)
Topic archived. No new replies allowed.