You are on page 1of 5

DATA STRUCTURES AND

ALGORITHMS
TASK 1

1. Write a program in C++ to insert node in AVL Tree and maintain the balance
factor.

INPUT

#include<iostream>
using namespace std;
class Node
{
public:
int Data;
Node *left;
Node *right;
int height;
};
int max(int a, int b);
int height(Node *N)
{
if (N == NULL)
return 0;
return N->height;
}
int max(int a, int b)
{
return (a > b)? a : b;
}
Node* newNode(int Data)
{
Node* node = new Node();
node->Data = Data;
node->left = NULL;
node->right = NULL;
node->height = 1;
return(node);
}
Node *rightRotate(Node *y)
{
Node *x = y->left;
Node *T2 = x->right;
x->right = y;
y->left = T2;
y->height = max(height(y->left),
height(y->right)) + 1;
x->height = max(height(x->left),
height(x->right)) + 1;
return x;
}
Node *leftRotate(Node *x)
{
Node *y = x->right;
Node *T2 = y->left;
y->left = x;
x->right = T2;
x->height = max(height(x->left),
height(x->right)) + 1;
y->height = max(height(y->left),
height(y->right)) + 1;
return y;
}
int getBalance(Node *N)
{
if (N == NULL)
return 0;
return height(N->left) - height(N->right);
}
Node* insert_Node(Node* node, int Data)
{
if (node == NULL)
return(newNode(Data));

if (Data < node->Data)


node->left = insert_Node(node->left, Data);
else if (Data > node->Data)
node->right = insert_Node(node->right, Data);
else
return node;
node->height = 1 + max(height(node->left),
height(node->right));
int balance = getBalance(node);
if (balance > 1 && Data < node->left->Data)
return rightRotate(node);
if (balance < -1 && Data > node->right->Data)
return leftRotate(node);
if (balance > 1 && Data > node->left->Data)
{
node->left = leftRotate(node->left);
return rightRotate(node);
}
if (balance < -1 && Data < node->right->Data)
{
node->right = rightRotate(node->right);
return leftRotate(node);
}
return node;
}
void pre_Order(Node *Base)
{
if(Base != NULL)
{
cout << Base->Data << " ";
pre_Order(Base->left);
pre_Order(Base->right);
}
}
int main()
{
Node *Base = NULL;
Base = insert_Node(Base, 16);
Base = insert_Node(Base, 21);
Base = insert_Node(Base, 26);
Base = insert_Node(Base, 31);
Base = insert_Node(Base, 36);
Base = insert_Node(Base, 41);
cout << "\n________DISPLAYING PRE_ORDER TRAVERSAL__________ \n";
pre_Order(Base);
return 0;
}
OUTPUT

You might also like