-
Notifications
You must be signed in to change notification settings - Fork 1
/
lab2_bst.c
452 lines (430 loc) · 12.3 KB
/
lab2_bst.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
/*
* Operating System Lab
* Lab2 (Synchronization)
* Student id :
* Student name :
*
* lab2_bst.c :
* - thread-safe bst code.
* - coarse-grained, fine-grained lock code
*
* Implement thread-safe bst for coarse-grained version and fine-grained version.
*/
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <pthread.h>
#include <string.h>
#include "lab2_sync_types.h"
pthread_mutex_t mutex;
int node_count = 0;
/*
* TODO
* Implement funtction which traverse BST in in-order
*
* @param lab2_tree *tree : bst to print in-order.
* @return : status (success or fail)
*/
int lab2_node_print_inorder(lab2_tree *tree) {
inorder(tree->root);
printf("\n node Number : %d",node_count);
return 0;
}
/*
* TODO
* Implement function which creates struct lab2_tree
* ( refer to the ./include/lab2_sync_types.h for structure lab2_tree )
*
* @return : bst which you created in this function.
*/
lab2_tree *lab2_tree_create() {
// You need to implement lab2_tree_create function.
lab2_tree *tree = (lab2_tree *)malloc(sizeof(lab2_tree));
pthread_mutex_init(&tree->mutex, NULL);
tree->root = NULL;
node_count = 0;
return tree;
}
/*
* TODO
* Implement function which creates struct lab2_node
* ( refer to the ./include/lab2_sync_types.h for structure lab2_node )
*
* @param int key : bst node's key to creates
* @return : bst node which you created in this function.
*/
lab2_node * lab2_node_create(int key) {
// You need to implement lab2_node_create function.
lab2_node *n = (lab2_node *)malloc(sizeof(lab2_node));
pthread_mutex_init(&n->mutex, NULL);
n->key = key;
n->left = NULL;
n->right = NULL;
return n;
}
/*
* TODO
* Implement a function which insert nodes from the BST.
*
* @param lab2_tree *tree : bst which you need to insert new node.
* @param lab2_node *new_node : bst node which you need to insert.
* @return : satus (success or fail)
*/
int lab2_node_insert(lab2_tree *tree, lab2_node *new_node){
// You need to implement lab2_node_insert function.
lab2_node *p = NULL,
*t = tree->root,
*n;
int key = new_node->key;
while(t != NULL){
if(key == t->key) {
// printf("key == t->key \n");
node_count++;
return 0;
}
p = t;
t = key < t->key ? t->left : t->right;
}
n = new_node;
if(p == NULL) {
tree->root = n;
// printf("t = new_node; \n");
node_count++;
return 0;
}
if(key < p->key){
p->left = n;
} else {
p->right = n;
}
// printf("insert key : %d\n", key);
node_count++;
return 0;
}
/*
* TODO
* Implement a function which insert nodes from the BST in fine-garined manner.
*
* @param lab2_tree *tree : bst which you need to insert new node in fine-grained manner.
* @param lab2_node *new_node : bst node which you need to insert.
* @return : status (success or fail)
*/
int lab2_node_insert_fg(lab2_tree *tree, lab2_node *new_node){
// You need to implement lab2_node_insert function.
lab2_node *p = NULL,
*t = tree->root,
*n;
int key = new_node->key;
while(t != NULL){
if(key == t->key) {
pthread_mutex_lock(&tree->mutex);
node_count++;
pthread_mutex_unlock(&tree->mutex);
return 0;
}
p = t;
pthread_mutex_lock(&p->mutex);
t = key < t->key ? t->left : t->right;
pthread_mutex_unlock(&p->mutex);
}
n = new_node;
if(p == NULL) {
pthread_mutex_lock(&tree->mutex);
tree->root = n;
node_count++;
pthread_mutex_unlock(&tree->mutex);
return 0;
}
pthread_mutex_lock(&tree->mutex);
if(key < p->key){
p->left = n;
} else {
p->right = n;
}
node_count++;
pthread_mutex_unlock(&tree->mutex);
return 0;
}
/*
* TODO
* Implement a function which insert nodes from the BST in coarse-garined manner.
*
* @param lab2_tree *tree : bst which you need to insert new node in coarse-grained manner.
* @param lab2_node *new_node : bst node which you need to insert.
* @return : status (success or fail)
*/
int lab2_node_insert_cg(lab2_tree *tree, lab2_node *new_node){
// You need to implement lab2_node_insert_cg function.
pthread_mutex_lock(&tree->mutex);
lab2_node *p = NULL,
*t = tree->root,
*n;
int key = new_node->key;
while(t != NULL){
if(key == t->key) {
// printf("key == t->key \n");
node_count++;
pthread_mutex_unlock(&tree->mutex);
return 0;
}
p = t;
t = key < t->key ? t->left : t->right;
}
n = new_node;
if(p == NULL) {
tree->root = n;
// printf("t = new_node; \n");
node_count++;
pthread_mutex_unlock(&tree->mutex);
return 0;
}
if(key < p->key){
p->left = n;
} else {
p->right = n;
}
// printf("insert key : %d\n", key);z
node_count++;
pthread_mutex_unlock(&tree->mutex);
return 0;
}
/*
* TODO
* Implement a function which remove nodes from the BST.
*
* @param lab2_tree *tree : bst tha you need to remove node from bst which contains key.
* @param int key : key value that you want to delete.
* @return : status (success or fail)
*/
int lab2_node_remove(lab2_tree *tree, int key) {
// You need to implement lab2_node_remove function.
lab2_node *p = NULL, *child, *succ, *succ_p, *t = tree->root;
node_count--;
while(t != NULL && t->key != key){
//printf("left : %d, right : %d\n", t->left->key, t->right->left->key);
p = t;
t = (key < t->key) ? t->left : t->right;
}
if(t == NULL) {
return 0;
}
if( (t->left == NULL) && (t->right == NULL) ){
if(p != NULL){
if( p->left == t ){
p->left = NULL;
} else{
p->right = NULL;
}
} else{
tree->root = NULL;
}
} else if( (t->left == NULL) || (t->right == NULL) ){
child = (t->left != NULL) ? t->left : t->right;
if( p != NULL ){
if( p->left == t ){
p->left = child;
} else{
p->right = child;
}
} else{
tree->root = child;
}
} else {
succ_p = t;
succ = t->right;
while( succ->left != NULL ){
succ_p = succ;
succ = succ->left;
}
if( succ_p->left == succ ){
succ_p->left = succ->right;
} else{
succ_p->right = succ->right;
}
t->key = succ->key;
t = succ;
}
t=NULL;
//lab2_node_print_inorder(tree);
return 0;
}
/*
* TODO
* Implement a function which remove nodes from the BST in fine-grained manner.
*
* @param lab2_tree *tree : bst tha you need to remove node in fine-grained manner from bst which contains key.
* @param int key : key value that you want to delete.
* @return : status (success or fail)
*/
int lab2_node_remove_fg(lab2_tree *tree, int key) {
// You need to implement lab2_node_remove function.
lab2_node *p = NULL, *child, *succ, *succ_p, *t = tree->root;
while(t != NULL && t->key != key){
//printf("left : %d, right : %d\n", t->left->key, t->right->left->key);
p = t;
pthread_mutex_lock(&p->mutex);
t = (key < t->key) ? t->left : t->right;
pthread_mutex_unlock(&p->mutex);
}
if(t == NULL) {
pthread_mutex_lock(&tree->mutex);
node_count--;
pthread_mutex_unlock(&tree->mutex);
return 0;
}
if( (t->left == NULL) && (t->right == NULL) ){
pthread_mutex_lock(&tree->mutex);
if(p != NULL){
if( p->left == t ){
p->left = NULL;
} else{
p->right = NULL;
}
} else{
tree->root = NULL;
}
node_count--;
pthread_mutex_unlock(&tree->mutex);
} else if( (t->left == NULL) || (t->right == NULL) ){
pthread_mutex_lock(&tree->mutex);
child = (t->left != NULL) ? t->left : t->right;
if( p != NULL ){
if( p->left == t ){
p->left = child;
} else{
p->right = child;
}
} else{
tree->root = child;
}
node_count--;
pthread_mutex_unlock(&tree->mutex);
} else {
pthread_mutex_lock(&tree->mutex);
succ_p = t;
succ = t->right;
while( succ->left != NULL ){
succ_p = succ;
succ = succ->left;
}
if( succ_p->left == succ ){
succ_p->left = succ->right;
} else{
succ_p->right = succ->right;
}
node_count--;
t->key = succ->key;
t = succ;
pthread_mutex_unlock(&tree->mutex);
}
t=NULL;
//lab2_node_print_inorder(tree);
return 0;
}
/*
* TODO
* Implement a function which remove nodes from the BST in coarse-grained manner.
*
* @param lab2_tree *tree : bst tha you need to remove node in coarse-grained manner from bst which contains key.
* @param int key : key value that you want to delete.
* @return : status (success or fail)
*/
int lab2_node_remove_cg(lab2_tree *tree, int key) {
// You need to implement lab2_node_remove_cg function.
pthread_mutex_lock(&tree->mutex);
lab2_node *p = NULL, *child, *succ, *succ_p, *t = tree->root;
node_count--;
while(t != NULL && t->key != key){
//printf("left : %d, right : %d\n", t->left->key, t->right->left->key);
p = t;
t = (key < t->key) ? t->left : t->right;
}
if(t == NULL){
pthread_mutex_unlock(&tree->mutex);
return 0;
}
if( (t->left == NULL) && (t->right == NULL) ){
if(p != NULL){
if( p->left == t ){
p->left = NULL;
} else{
p->right = NULL;
}
} else{
tree->root = NULL;
}
} else if( (t->left == NULL) || (t->right == NULL) ){
child = (t->left != NULL) ? t->left : t->right;
if( p != NULL ){
if( p->left == t ){
p->left = child;
} else{
p->right = child;
}
} else{
tree->root = child;
}
} else {
succ_p = t;
succ = t->right;
while( succ->left != NULL ){
succ_p = succ;
succ = succ->left;
}
if( succ_p->left == succ ){
succ_p->left = succ->right;
} else{
succ_p->right = succ->right;
}
t->key = succ->key;
t = succ;
}
t=NULL;
pthread_mutex_unlock(&tree->mutex);
return 0;
}
/*
* TODO
* Implement function which delete struct lab2_tree
* ( refer to the ./include/lab2_sync_types.h for structure lab2_node )
*
* @param lab2_tree *tree : bst which you want to delete.
* @return : status(success or fail)
*/
void lab2_tree_delete(lab2_tree *tree) {
// You need to implement lab2_tree_delete function.
int key;
lab2_node *t = tree->root;
if(t == NULL) return;
while(t != NULL){
key = t->key;
//printf("key : %d\n",key);
lab2_node_remove(tree, key);
t = tree->root;
}
}
/*
* TODO
* Implement function which delete struct lab2_node
* ( refer to the ./include/lab2_sync_types.h for structure lab2_node )
*
* @param lab2_tree *tree : bst node which you want to remove.
* @return : status(success or fail)
*/
void lab2_node_delete(lab2_node *node) {
// You need to implement lab2_node_delete function.
}
/*
* TODO
* Implement function which delete struct lab2_node
* ( refer to the ./include/lab2_sync_types.h for structure lab2_node )
*
* @param lab2_tree *tree : bst node which you want to remove.
* @return : status(success or fail)
*/
void inorder(lab2_node *node){
if(node == NULL) return;
inorder(node->left);
//printf("%d ", node->key);
inorder(node->right);
}