-
Notifications
You must be signed in to change notification settings - Fork 0
/
binary_search_tree.c
100 lines (84 loc) · 1.81 KB
/
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include <stdio.h>
#include <stdlib.h>
void insert();
int choice,buff_data;
struct node
{
int data;
struct node *left;
struct node *right;
}*head;
void traverse(struct node* buff);
int main()
{
printf("Binary Search Tree Implementation\n\n");
while(1)
{
printf("1-Insert node\n");
printf("2-Delete node\n");
printf("3-Traverse all nodes and print\n");
printf("Enter your choice: ");
scanf("%d",&choice);
switch(choice)
{
case 1:
insert();
break;
case 2:
break;
case 3:
traverse(head);
printf("\n");
break;
default:
printf("Invalid Choice\n\n");
break;
}
}
return 0;
}
void insert()
{
struct node *temp;
temp=(struct node *)malloc(sizeof(struct node));
if(!head)
{
printf("Enter head data: ");
scanf("%d",&(temp->data));
head=temp;
}
else
{
struct node *parent,*child;
parent=head;
child=head;
printf("Enter data: ");
scanf("%d",&(buff_data));
temp->data= buff_data;
while(child != NULL)
{
if(buff_data < child->data)
{
parent=child;
child=parent->left;
}
else
{
parent=child;
child=parent->right;
}
}
if(buff_data < parent->data)
parent->left= temp;
else
parent->right= temp;
}
}
void traverse(struct node* buff)
{
if(buff->left != NULL)
traverse(buff->left);
printf("%d-",buff->data);
if(buff->right != NULL)
traverse(buff->right);
}