-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
AVL_Tree_or_not.cpp
132 lines (114 loc) · 3.52 KB
/
AVL_Tree_or_not.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
/*
Introduction
Given a Binary Search Tree ,Check if its a AVL Tree or not
A BST is said to be a AVL Tree
- if difference between heights of its subtrees is atmost 1
Argument/Return Type
Input of total no.of nodes is taken
Input of key values of nodes of tree are taken
*/
#include <bits/stdc++.h>
using namespace std;
//Define Node as structure
struct Node
{
int key;
Node* left;
Node* right;
};
/* Function to create a node with 'value' as the data stored in it.
Both the children of this new Node are initially null. */
struct Node* newNode(int value)
{
Node* n = new Node;
n->key = value;
n->left = NULL;
n->right = NULL;
return n;
}
// Function to insert a node with given value to the root
struct Node* insert(struct Node* root,int element)
{
/*If the root is NULL , create a node with given element and assign it to root
else if the root itself is the node with given data , return
else recursively insert it in one of the subtrees accordingly */
if(root==NULL)
root = newNode(element);
else if(root->key < element)
root->right = insert(root->right,element);
else if(root->key > element)
root->left = insert(root->left,element);
return root;
}
// Function to calculate height of a given Tree recursively
int Height(struct Node* root)
{
/* If root is a NULL node return 0
else recursively calculate heights of subtrees and get height of the root */
if(root==NULL)
return 0;
else
return 1 + max( Height(root->left) , Height(root->right) );
}
//Function to determine whether given Tree is AVL Tree or not
bool IsAVLTree(struct Node* root)
{
/* If heights of subtrees differ atmost by 1 , return True
else return False */
if(abs( Height(root->left) - Height(root->right) ) <= 1)
return true;
else
return false;
}
// Driver code
int main()
{
int n;
cout<<"Enter total no.of nodes of the input Tree ( including NULL nodes ) : ";
cin>>n;
//create a null node and initialise it as a NULL node
struct Node* root;
root=NULL;
cout<<"Enter value of each node of the Tree , with head as the first value ( if a node is NULL , enter -1 ) with spaces"<<endl;
for(int i=0;i<n;i++)
{
int data;
cin>>data;
//take input of data of each node and insert it in the root
root = insert(root,data);
}
//Call the function and print the result
if(IsAVLTree(root))
cout<<"Hence given BST is a AVL Tree";
else
cout<<"Hence given BST is not a AVL Tree";
return 0;
}
/*
Input:
0 <= node->key < 1000000000
While entering node values of the tree ,
value of the head of the tree should be enetered first
Sample Test Case 1
Input Binary Tree 1:
11
/ \
2 20
/ \
1 5
/
4
Input Format :
Example :
Enter total no.of nodes of the input Tree ( including NULL nodes ) : 6
Enter value of each node of the Tree , with head as the first value ( if a node is NULL , enter -1 ) with spaces
11 2 20 1 5 4
Output Format :
Example : ( Output to the above input example )
Hence given BST is not a AVL Tree
Time/Space Complexity
Time Complexity : O(n)
Where n is the no.of nodes ofthe tree
Space Complexity : O(h)
Where h is the height of the tree
*/