-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree_height.cpp
61 lines (56 loc) · 1.19 KB
/
tree_height.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
#include<iostream>
#include<queue>
#include<list>
#include<cmath>
using namespace std ;
void printList(list<struct node*> );
struct node{
int data ;
struct node *left ;
struct node *right;
node(int d){
data = d ;
left = right = NULL ;
};
};
int lheight ;
int rheight ;
struct node* root ;
struct node* insert(struct node* , int);
struct node* insert(struct node *root , int data){
if(root == NULL) return new node(data) ;
if(root->data > data){
root->left = insert(root->left,data);
}
else if(root->data < data){
root->right = insert(root->right,data);
}
return root ;
}
int getHeight(struct node* root){
if(root == NULL)
return -1 ;
else{
cout<<root->data <<endl ;
int lheight = getHeight(root->left) ;
// cout<<" lheight after getHeight "<< lheight <<endl ;
int rheight = getHeight(root->right) ;
cout<<" returning "<< max(lheight , rheight) + 1 <<endl ;
return (max(lheight , rheight) + 1) ;
}
}
int main(){
struct node* begin = NULL;
begin = insert(begin,50);
insert(begin,40);
insert(begin,70);
insert(begin,25);
insert(begin,41);
insert(begin,60);
insert(begin,75);
insert(begin,20);
insert(begin,26);
cout<<endl ;
cout<<endl ;
cout<<getHeight(begin)<<endl;;
}