-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrees_insertion_deletion.c
141 lines (132 loc) · 3.26 KB
/
trees_insertion_deletion.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
136
137
138
139
140
141
#include <stdio.h>
#include <stdlib.h>
struct branch
{
int data;
struct branch *llink;
struct branch *rlink;
};
typedef struct branch *BRANCH;
BRANCH create(int k);
BRANCH insert(BRANCH root, int k);
BRANCH deleteelement(BRANCH root,int m);
void inorder(BRANCH root);
int main()
{
BRANCH root = NULL;
int n,m;
printf("Enter the number of nodes in the tree\n");
scanf("%d",&n);
int a[n];
for (int i = 0; i < n; i++)
{
scanf("%d",&a[i]);
root = insert(root, a[i]);
}
printf("Enter the element that you want to delete\n");
scanf("%d",&m);
root=deleteelement(root,m);
inorder(root);
return 0;
}
BRANCH create(int k)
{
BRANCH newnode;
newnode = malloc(sizeof(struct branch));
newnode->data = k;
newnode->llink = NULL;
newnode->rlink = NULL;
return newnode;
}
BRANCH insert(BRANCH root, int k)
{
BRANCH tp, newnode;
if (root == NULL)
{
newnode = create(k);
newnode->data = k;
return newnode;
}
else
{
if (k >= root->data)
{
root->rlink = insert(root->rlink, k);
}
else
{
root->llink = insert(root->llink, k);
}
}
return root;
}
BRANCH deleteelement(BRANCH root,int key)
{
if(root==NULL)
{
printf("key not found\n");
}
else if(root->data==key)
{
if(root->llink==NULL && root->rlink==NULL)
{
printf("%d is deleted\n",root->data);
free(root);
return NULL;
}
else if(root->llink==NULL && root->rlink!=NULL)
{
BRANCH temp = root->rlink;
printf("%d is deleted\n",root->data);
free(root);
return temp;
}
else if(root->llink!=NULL && root->rlink==NULL)
{
BRANCH temp = root->llink;
printf("%d is deleted\n",root->data);
free(root);
return temp;
}
else if(root->llink!=NULL && root->rlink!=NULL)
{
BRANCH cur=root,prev=root ;
cur=cur->llink;
while(cur->rlink!=NULL)
{
prev=cur;
cur=cur->rlink;
}
if(cur==root->llink)
{
root->data=cur->data;
root->rlink=cur->rlink;
free(cur);
}
else
{
root->data=cur->data;
prev->rlink=cur->llink;
free(cur);
}
return root;
}
}
else if(key>root->data)
{
root->rlink=deleteelement(root->rlink,key);
}
else{
root->llink=deleteelement(root->llink,key);
}
return root;
}
void inorder(BRANCH root)
{
if (root != NULL)
{
inorder(root->llink);
printf("%d ", root->data);
inorder(root->rlink);
}
}