-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAVL.h
558 lines (486 loc) · 15.3 KB
/
AVL.h
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
#ifndef AVL_H
#define AVL_H
#include <string>
#include <vector>
using namespace std;
/////////////////////////////
// AVL Class ////
/////////////////////////////
template <class Comparable>
class AvlTree;
template <class Comparable>
class AvlNode
{
Comparable element;
Comparable element_f;
Comparable fullInfo;
AvlNode *left;
AvlNode *right;
int height;
AvlNode( const Comparable & theElement, AvlNode *lt, AvlNode *rt, int h = 0 )
: fullInfo( theElement ), left( lt ), right( rt ), height( h ) {
// Extract the first two words from fullInfo
istringstream iss(fullInfo);
string firstWord, secondWord;
iss >> firstWord >> secondWord;
element = firstWord + " " + secondWord;
element_f = to_upper(element);
}
friend class AvlTree<Comparable>;
};
template <class Comparable>
class AvlTree
{
public:
explicit AvlTree( const Comparable & notFound );
AvlTree( const AvlTree & rhs );
~AvlTree( );
const Comparable & findMin( ) const;
const Comparable & findMax( ) const;
const Comparable & find( const Comparable & x ) const;
vector<string> findPartial(const string& searchStr, vector<string>& results) const;
bool isEmpty( ) const;
bool isBalanced() ;
void inOrderPrintTree(ofstream& outFile ) const;
void preOrderPrintTree(ofstream& outFile ) const;
void getHeight();
void makeEmpty( );
void insert( const Comparable & x , const Comparable & y );
void remove( const Comparable & x );
void drawTree(ofstream& outFile);
private :
AvlNode<Comparable> *root;
const Comparable ITEM_NOT_FOUND;
const Comparable & elementAt( AvlNode<Comparable> *t ) const;
int getHeight( AvlNode<Comparable> * root);
bool isBalanced(AvlNode<Comparable>* root) ;
void insert( const Comparable & x,const Comparable & y, AvlNode<Comparable> * & t ) const;
void remove(const Comparable & x, AvlNode<Comparable> * & t ) const;
void makeEmpty( AvlNode<Comparable> * & t ) const;
void printTree( AvlNode<Comparable> *t ) const;
void inOrderPrintTree( AvlNode<Comparable> *t , ofstream& outFile ) const;
void preOrderPrintTree( AvlNode<Comparable> *t , ofstream& outFile) const;
void drawTree(AvlNode<Comparable> * t, ofstream& outFile, bool isRight, const string& space);
AvlNode<Comparable> * findMin( AvlNode<Comparable> *t ) const;
AvlNode<Comparable> * findMax( AvlNode<Comparable> *t ) const;
AvlNode<Comparable> * find( const Comparable & x, AvlNode<Comparable> *t ) const;
void findPartial( const string & searchStr, AvlNode<Comparable> * t, vector<string> & results ) const;
// Avl manipulations
int height( AvlNode<Comparable> *t ) const;
int max( int lhs, int rhs ) const;
int getBalance(AvlNode<Comparable> *t) const;
void rotateWithLeftChild( AvlNode<Comparable> * & k2 ) const;
void rotateWithRightChild( AvlNode<Comparable> * & k1 ) const;
void doubleWithLeftChild( AvlNode<Comparable> * & k3 ) const;
void doubleWithRightChild( AvlNode<Comparable> * & k1 ) const;
};
//////////////////////////////////////////////////////////////////////////////
/// Constructor, Destructor, Copy Constructor ////
//////////////////////////////////////////////////////////////////////////////
//Construct the tree.
template <class Comparable>
AvlTree<Comparable>:: AvlTree(const Comparable & notFound ) :
ITEM_NOT_FOUND( notFound ), root( NULL ){}
// Destructor for the tree.
template <class Comparable>
AvlTree<Comparable>::~AvlTree( )
{
makeEmpty( );
}
// Copy constructor, shallow copy.
template <class Comparable>
AvlTree<Comparable>:: AvlTree( const AvlTree<Comparable> & rhs ) : root( NULL ), ITEM_NOT_FOUND( rhs.ITEM_NOT_FOUND )
{
*this = rhs;
}
/////////////////////////////////////////
/// Member Functions ////
/////////////////////////////////////////
template <class Comparable>
bool AvlTree<Comparable>:: isBalanced() {
return isBalanced(root);
}
template <class Comparable>
bool AvlTree<Comparable>::isBalanced(AvlNode<Comparable>* root) {
if (root == NULL) {
return true;
} else {
int leftHeight = getHeight(root->left);
int rightHeight = getHeight(root->right);
if (abs(leftHeight - rightHeight) > 1) {
return false;
}
return isBalanced(root->left) && isBalanced(root->right);
}
}
template <class Comparable>
void AvlTree<Comparable>::getHeight( ) {
int right, left;
if(root)
left = getHeight(root->left);
else
left = 0;
if(root)
right = getHeight(root->right) ;
else
right = 0;
cout << "The heights of BST are for left: " << left << " and right: " << right << endl;
}
template <class Comparable>
int AvlTree<Comparable>::getHeight(AvlNode<Comparable> * root) {
if (root == NULL)
return 0;
else {
// Find the height of left, right subtrees
int left_height = getHeight(root->left);
int right_height = getHeight(root->right);
// Find max(subtree_height) + 1 to get the height of the tree
return max(left_height, right_height) + 1;
}
}
//Return the height of node t, or -1, if NULL.
template <class Comparable>
int AvlTree<Comparable>::height( AvlNode<Comparable> *t ) const
{
if (t == NULL)
return -1;
return t->height;
}
//Return maximum of lhs and rhs.
template <class Comparable>
int AvlTree<Comparable>::max( int lhs, int rhs ) const
{
if (lhs > rhs)
return lhs;
return rhs;
}
/*
Insert x into the tree; duplicates are ignored.
*/
template <class Comparable>
void AvlTree<Comparable>::insert( const Comparable & x , const Comparable & y )
{
insert( x, y ,root );
}
// inserting into AVL Tree considering tree balance
template <class Comparable>
void AvlTree<Comparable>::insert ( const Comparable & x, const Comparable & y, AvlNode<Comparable> * & t ) const{
if ( t == NULL ){
t = new AvlNode<Comparable>( y, NULL, NULL );
}
else if (x.compare(t->element) < 0 ) {
// X should be inserted to the left tree!
insert( x, y,t->left );
// Check if the left tree is out of balance (left subtree grew in height!)
if ( height( t->left ) - height( t->right ) == 2 )
if ( x.compare(t->left->element) < 0 ) // X was inserted to the left-left subtree!
rotateWithLeftChild( t );
else // X was inserted to the left-right subtree!
doubleWithLeftChild( t );
}
else if( x.compare(t->element) > 0)
{ // Otherwise X is inserted to the right subtree
insert( x, y,t->right );
if ( height( t->right ) - height( t->left ) == 2 )
// height of the right subtree increased
if ( x.compare(t->right->element) > 0 )
// X was inserted to right-right subtree
rotateWithRightChild( t );
else // X was inserted to right-left subtree
doubleWithRightChild( t );
}
else{
cout << "The given " << t->element << " already exists in the database." << endl; // Duplicate; do nothing
return;
}
// update the height the node
t->height = max( height( t->left ), height( t->right ) ) + 1;
}
template <class Comparable>
int AvlTree<Comparable>::getBalance(AvlNode<Comparable> *t) const
{
if (t == nullptr)
return 0;
return height(t->left) - height(t->right);
}
template <class Comparable>
void AvlTree<Comparable>::remove( const Comparable & x )
{
remove( x, root );
}
// deletion from AVL Tree considering the height balance
template <class Comparable>
void AvlTree<Comparable>::remove(const Comparable & x, AvlNode<Comparable> * & t) const
{
if (t == nullptr)
return; // Item not found; do nothing
if (x.compare(t->element_f) < 0)
remove(x, t->left);
else if (x.compare(t->element_f) > 0)
remove(x, t->right);
else if (t->left != nullptr && t->right != nullptr) // Two children
{
t->fullInfo = findMin(t->right)->fullInfo;
t->element = findMin( t->right )->element;
t->element_f = findMin( t->right )->element_f;
t->height = findMin( t->right )->height;
remove(t->element_f, t->right);
}
else // one or no children
{
AvlNode<Comparable> *oldNode = t;
t = (t->left != nullptr) ? t->left : t->right;
delete oldNode;
}
if (t == nullptr)
return;
// update the height of the node
t->height = 1 + max(height(t->left), height(t->right));
// check if the node is unbalanced
int balance = getBalance(t);
if (balance > 1 && getBalance(t->left) >= 0) // left-left case
rotateWithRightChild(t);
else if (balance > 1 && getBalance(t->left) < 0) // left-right case
{
rotateWithLeftChild(t->left);
rotateWithRightChild(t);
}
else if (balance < -1 && getBalance(t->right) <= 0) // right-right case
rotateWithLeftChild(t);
else if (balance < -1 && getBalance(t->right) > 0) // right-left case
{
rotateWithRightChild(t->right);
rotateWithLeftChild(t);
}
}
/*
Internal method to get element field in node t.
Return the element field or ITEM_NOT_FOUND if t is NULL.
*/
template <class Comparable>
const Comparable & AvlTree<Comparable>:: elementAt( AvlNode<Comparable> *t ) const
{
return t == NULL ? ITEM_NOT_FOUND : t->fullInfo;
}
//Find Helper
template <class Comparable>
const Comparable & AvlTree<Comparable>::find( const Comparable & x ) const
{
if(find( x, root )!= NULL){
return x;
}
else
return ITEM_NOT_FOUND ;
}
/*
Internal method to find an item in a subtree.
x is item to search for.
t is the node that roots the tree.
Return node containing the matched item.
*/
template <class Comparable>
AvlNode<Comparable> *AvlTree<Comparable>::find( const Comparable & x, AvlNode<Comparable> * t ) const
{
if ( t == NULL )
return NULL;
else if( x.compare(t->element_f) < 0 )
return find( x, t->left );
else if(x.compare(t->element_f) > 0 )
return find( x, t->right );
else
return t; // Match
}
template <class Comparable>
vector<string> AvlTree<Comparable>::findPartial(const string& searchStr, vector<string>& results) const
{
findPartial(searchStr, root, results);
return results;
}
template <class Comparable>
void AvlTree<Comparable>::findPartial( const string & searchStr, AvlNode<Comparable> * t, vector<string> & results ) const
{
if ( t == NULL )
return;
else if( searchStr.length() <= t->element_f.length() && t->element_f.substr(0, searchStr.length()) == searchStr )
results.push_back(t->fullInfo);
findPartial(searchStr, t->left, results);
findPartial(searchStr, t->right, results);
}
//FindMin Helper
template <class Comparable>
const Comparable & AvlTree<Comparable>::findMin( ) const
{
return elementAt( findMin( root ) );
}
/*
Internal method to find the smallest item in a subtree t.
Return node containing the smallest item.
*/
template <class Comparable>
AvlNode<Comparable> * AvlTree<Comparable>::findMin( AvlNode<Comparable> *t ) const
{
if( t == NULL )
return NULL;
if( t->left == NULL )
return t;
return findMin( t->left );
}
//FindMax Helper
template <class Comparable>
const Comparable & AvlTree<Comparable>::findMax( ) const
{
return elementAt( findMax( root ) );
}
/*
Internal method to find the largest item in a subtree t.
Return node containing the largest item.
*/
template <class Comparable>
AvlNode<Comparable> *AvlTree<Comparable>::findMax( AvlNode<Comparable> *t ) const
{
if( t != NULL )
while( t->right != NULL )
t = t->right;
return t;
}
//Make the tree logically empty.
template <class Comparable>
void AvlTree<Comparable>::makeEmpty( )
{
makeEmpty( root );
}
// logical control
template <class Comparable>
bool AvlTree<Comparable>:: isEmpty( ) const
{
return root == nullptr;
}
//Internal method to make subtree empty.
template <class Comparable>
void AvlTree<Comparable>:: makeEmpty( AvlNode<Comparable> * & t ) const
{
if( t != NULL )
{
makeEmpty( t->left );
makeEmpty( t->right );
delete t;
}
t = NULL;
}
//Print the tree contents in sorted order.
template <class Comparable>
void AvlTree<Comparable>::inOrderPrintTree(ofstream& outFile ) const
{
if( isEmpty( ) )
return;
else
inOrderPrintTree( root , outFile );
}
//Internal method to print a subtree rooted at t in sorted order.
template <class Comparable>
void AvlTree<Comparable>::inOrderPrintTree( AvlNode<Comparable> * t , ofstream& outFile) const
{
if ( t != NULL )
{
inOrderPrintTree( t->left , outFile);
outFile << t->fullInfo << endl;
inOrderPrintTree( t->right , outFile);
}
}
//Print the tree contents in preOrder
template <class Comparable>
void AvlTree<Comparable>::preOrderPrintTree( ofstream& outFile) const
{
if( isEmpty( ) )
return;
else
preOrderPrintTree( root , outFile );
}
//Internal method to print a subtree rooted at t in sorted order.
template <class Comparable>
void AvlTree<Comparable>::preOrderPrintTree( AvlNode<Comparable> * t , ofstream& outFile) const
{
if ( t != NULL )
{
outFile << t->fullInfo << endl;
preOrderPrintTree( t->left , outFile);
preOrderPrintTree( t->right, outFile );
}
}
template <class Comparable>
void AvlTree<Comparable>::drawTree(ofstream& outFile) {
drawTree(root,outFile,true,"");
}
template <class Comparable>
void AvlTree<Comparable>::drawTree(AvlNode<Comparable> * t, ofstream& outFile, bool isRight, const string& space) {
if (t == nullptr)
return;
string n_space = space;
if (isRight) {
outFile << n_space <<"|__ " << t->element << endl;
n_space += " ";
} else {
outFile << n_space <<"|-- " << t->element << endl;
n_space += "| ";
}
drawTree(t->left, outFile, false,n_space);
drawTree(t->right, outFile,true,n_space);
}
/////////////////////////////////////////////////////////
/// AVL Manipulation ////
/////////////////////////////////////////////////////////
/*
Rotate binary tree node with left child.
For AVL trees, this is a single rotation for case 1.
Update heights, then set new root.
*/
template <class Comparable>
void AvlTree<Comparable>::rotateWithLeftChild( AvlNode<Comparable> * & k2 ) const
{
AvlNode<Comparable> *k1 = k2->left;
k2->left = k1->right;
k1->right = k2;
k2->height = max( height( k2->left ), height( k2->right ) ) + 1;
k1->height = max( height( k1->left ), k2->height ) + 1;
k2 = k1;
}
/*
Rotate binary tree node with right child.
For AVL trees, this is a single rotation for case 4.
Update heights, then set new root.
*/
template <class Comparable>
void AvlTree<Comparable>::rotateWithRightChild( AvlNode<Comparable> * & k1 ) const
{
AvlNode<Comparable> *k2 = k1->right;
k1->right = k2->left;
k2->left = k1;
k1->height = max( height( k1->left ), height( k1->right ) ) + 1;
k2->height = max( height( k2->right ), k1->height ) + 1;
k1 = k2;
}
/*
Double rotate binary tree node: first left child.
with its right child; then node k3 with new left child.
For AVL trees, this is a double rotation for case 2.
Update heights, then set new root.
*/
template <class Comparable>
void AvlTree<Comparable>::doubleWithLeftChild( AvlNode<Comparable> * & k3 ) const
{
rotateWithRightChild( k3->left );
rotateWithLeftChild( k3 );
}
/*
Double rotate binary tree node: first right child.
with its left child; then node k1 with new right child.
For AVL trees, this is a double rotation for case 3.
Update heights, then set new root.
*/
template <class Comparable>
void AvlTree<Comparable>::doubleWithRightChild( AvlNode<Comparable> * & k1 ) const
{
rotateWithLeftChild( k1->right );
rotateWithRightChild( k1 );
}
#endif