-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaking_binary_search_tree.c
76 lines (70 loc) · 1.32 KB
/
making_binary_search_tree.c
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
#include "stdio.h"
#include "stdlib.h"
#include <stdbool.h>
struct bstnode
{
int data;
struct bstnode* right;
struct bstnode* left;
};
struct bstnode* get_newnode(int data){
struct bstnode* newnode=(struct bstnode*)malloc(sizeof(struct bstnode));
newnode->data=data;
newnode->right=newnode->left=NULL;
return newnode;
}
struct bstnode* insert(struct bstnode* root, int data){
if (root==NULL)
{
root=get_newnode(data);
}
else if(root->data>=data){
root->left=insert(root->left,data);
}
else {
root->right = insert(root->right,data);
}
return root;
}
bool Search(struct bstnode* root,int data) {
if(root == NULL) {
return false;
}
else if(root->data == data) {
return true;
}
else if(data <= root->data) {
return Search(root->left,data);
}
else {
return Search(root->right,data);
}
}
int max(int a,int b){
if (a>b)
{
return a;
}
return b;
}
int find_height(struct bstnode* root){
if (root==NULL)
{
return -1;
}
return max(find_height(root->left), find_height(root->right))+1;
}
int main(int argc, char const *argv[])
{
struct bstnode* root=(struct bstnode*)malloc(sizeof(struct bstnode));
root=NULL;
root=insert(root,50);
root=insert(root,49);
root=insert(root,25);
root=insert(root,20);
root=insert(root,3);
root=insert(root,99);
int h=find_height(root);
printf("%d\n",h );
return 0;
}