-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path_9.binarysearchtree.c
135 lines (132 loc) · 3.67 KB
/
_9.binarysearchtree.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
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
133
134
135
#include<stdio.h>
#include<stdlib.h>
struct node
{int DATA;
struct node *LC,*RC;
};
void display(struct node *ptr)
{if(ptr!=NULL)
{display(ptr->LC);
printf("%d\t",ptr->DATA);
display(ptr->RC);
}
}
struct node *create(int ITEM)
{struct node *newnode=(struct node *)malloc(sizeof(struct node *));
newnode->DATA=ITEM;newnode->LC=NULL;newnode->RC=NULL;
return newnode;
}
struct node *insert(struct node *root,int ITEM)
{if(root==NULL)
return create(ITEM);
if(ITEM<root->DATA)
root->LC=insert(root->LC,ITEM);
else
root->RC=insert(root->RC,ITEM);
return root;
}
struct node *succ(struct node *ptr)
{struct node *ptr1=ptr->RC;
if(ptr1!=NULL)
while(ptr1->LC!=NULL)
ptr1=ptr1->LC;
return(ptr1);
}
struct node * delete(struct node *ptr,int KEY)
{int flag=0,option;struct node *parent,*ptr1;
while(ptr!=NULL && flag==0)
{if(KEY<ptr->DATA)
{parent=ptr;
ptr=ptr->LC;
}
else
if(KEY>ptr->DATA)
{parent=ptr;ptr=ptr->RC;}
else
if(ptr->DATA==KEY)
flag=1;
}
if(flag==0)
{printf("\nItem does not exist");return NULL;}
if(ptr->LC==NULL && ptr->RC==NULL)
option=1;
else
if(ptr->LC!=NULL && ptr->RC!=NULL)
option=2;
else
option=3;
switch(option)
{case 1:if(parent->LC==ptr)
parent->LC=NULL;
else
parent->RC=NULL;
free(ptr);break;
case 2:ptr1=succ(ptr);
ptr->DATA=ptr1->DATA;
free(ptr1);break;
case 3:if(parent->LC==ptr)
{ if(ptr->LC==NULL)
parent->LC=ptr->RC;
else
parent->LC=ptr->LC;
}
else
{if(parent->RC==ptr)
if(ptr->LC==NULL)
parent->RC=ptr->RC;
else
parent->RC=ptr->LC;
}
free(ptr);break;
}
}
void search(struct node *ptr,int ITEM)
{int flag=0;
while(ptr!=NULL && flag==0)
{if(ITEM<ptr->DATA)
ptr=ptr->LC;
else
if(ptr->DATA==ITEM)
flag=1;
else
if(ITEM>ptr->DATA)
ptr=ptr->RC;
}
if(flag==1)
printf("\nItem found");
else
printf("\nItem not found");
}
int main()
{struct node *root=NULL,*temp;int op,ITEM;
root = insert(root, 10);
root = insert(root, 20);
root = insert(root, 7);
root = insert(root, 25);
root = insert(root, 35);
root = insert(root, 40);
root = insert(root, 16);
root = insert(root, 4);
root=insert(root,8);
display(root);
do
{printf("\nMENU\n");
printf("1.INSERT\t2.DELETE\t3.SEARCH\n");
printf("Enter your choice: ");
scanf("%d",&op);
switch(op)
{case 1:printf("\nEnter item to be inserted: ");
scanf("%d",&ITEM);
insert(root,ITEM);printf("\n");display(root);break;
case 2:printf("\nEnter element to be deleted: ");
scanf("%d",&ITEM);
temp=delete(root,ITEM);printf("\n");display(root);break;
case 3:printf("\nEnter item to be searched: ");
scanf("%d",&ITEM);
search(root,ITEM);printf("\n");display(root);break;
}
printf("\nDo you want to continue? 1/2: ");
scanf("%d",&op);
}while(op==1);
return 0;
}