-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheight.cpp
70 lines (62 loc) · 1.5 KB
/
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
62
63
64
65
66
67
68
69
70
/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
#include <stdlib.h>
struct btnode
{
int data;
struct btnode *left;
struct btnode *right;
};
struct btnode *root;
struct btnode* createbtnode(int n)
{
struct btnode *node= (struct btnode*)malloc(sizeof (struct btnode));
node->data=n;
node->left=NULL;
node->right=NULL;
return node;
}
int height(struct btnode*root,int c)
{
if(root==NULL)
return 0;
else
{
int i=height(root->left,i);
int j=height(root->right,j);
if(i>j)
return i+1;
else
return j+1;
}
}
int main()
{
int ch,n,c;
while(1)
{
printf("1.enter elements to tree\n2.height of tree\n3.exit\n");
printf("enter your choice\n");
scanf("%d",&ch);
switch(ch)
{
case 1: root=createbtnode(1);
root->left=createbtnode(2);
root->right=createbtnode(3);
root->left->left=createbtnode(4);
root->left->right=createbtnode(5);
break;
case 2:c=height(root,0);
printf("the height of tree %d",c);
case 3:exit(0);
break;
default:printf("invalid choice\n");
}
}
return 0;
}