-
Notifications
You must be signed in to change notification settings - Fork 0
/
DoLinkList.c
452 lines (400 loc) · 11.6 KB
/
DoLinkList.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
//
// Created by Maylon on 2022/7/21.
//
#include "DoLinkList.h"
void InitDoList(DoList *L) {
*L = NULL;
}
Status DestroyDoList(DoList *L) {
if (*L == NULL) {
return false;
}
DoLNode *p;
while (*L != NULL) {
p = *L;
*L = (*L)->next;
free(p);
}
return true;
}
Status DoList_Head_Insert(DoList *L, ElemType e) {
DoLNode *p = (DoLNode *) malloc(sizeof(DoLNode));
if (p == NULL) {
return false;
}
if (*L == NULL) {
*L = p;
(*L)->data = e;
(*L)->prior = NULL;
(*L)->next = NULL;
}
else {
p->data = e;
p->prior = NULL;
p->next = *L;
*L = p;
}
return true;
}
Status DoList_Tail_Insert(DoList *L, ElemType e) {
DoLNode *p = (DoLNode *) malloc(sizeof(DoLNode));
if (p == NULL) {
return false;
}
if (*L == NULL) {
*L = p;
(*L)->data = e;
(*L)->prior = NULL;
(*L)->next = NULL;
}
else {
DoLNode *t = *L;
while (t->next != NULL) {
t = t->next;
}
p->data = e;
p->prior = t;
p->next = NULL;
t->next = p;
}
return true;
}
Status DoList_Insert_By_Order(DoList *L, int i, ElemType e) {
if (i < 1) { // out of bounds
return input_error;
}
DoLNode *p = (DoLNode *) malloc(sizeof(DoLNode));
if (p == NULL) {
return false;
}
p->data = e;
if (i == 1) {
p->prior = NULL;
p->next = *L;
*L = p;
}
else {
int j = 1;
DoLNode *t = *L;
while (t->next != NULL && i != j + 1) { // find the insert position (prior node)
t = t->next;
j++;
}
if (i > j + 1) { // out of bounds
return input_error;
}
p->prior = t;
p->next = t->next;
if (t->next != NULL) {
t->next->prior = p;
}
t->next = p;
}
return true;
}
void DoList_Delete_By_Node(DoList *L, DoLNode *p) {
if (*L == p) {
*L = p->next;
if (p->next != NULL) {
p->next->prior = NULL;
}
free(p);
}
else {
p->prior->next = p->next;
if (p->next != NULL) {
p->next->prior = p->prior;
}
free(p);
}
}
Status DoList_Delete_By_Value(DoList *L, ElemType e) {
if (*L == NULL) {
return false;
}
DoLNode *p = DoList_Retrieve_By_Value(*L, e);
if (p == NULL) {
return false;
}
DoList_Delete_By_Node(L, p);
return true;
}
Status DoList_Delete_By_Order(DoList *L, int i, ElemType *e) {
if (*L == NULL) {
return false;
}
DoLNode *p = DoList_Retrieve_By_Order(*L, i);
if (p == NULL) {
return input_error;
}
DoList_Delete_By_Node(L, p);
return true;
}
DoLNode *DoList_Retrieve_By_Value(DoList L, ElemType e) {
DoLNode *p = L;
while (p != NULL) {
if (p->data == e) {
break;
}
p = p->next;
}
return p;
}
DoLNode *DoList_Retrieve_By_Order(DoList L, int i) {
if (L == NULL) {
return NULL;
}
if (i < 1) { // out of bounds
return NULL;
}
int j = 1;
DoLNode *p = L;
while (p->next != NULL) {
if (i == j) {
break;
}
p = p->next;
j++;
}
if (i > j) { // out of bounds
return NULL;
}
return p;
}
Status DoList_Update_By_Value(DoList L, ElemType old, ElemType new) {
if (L == NULL) {
return false;
}
DoLNode *p = DoList_Retrieve_By_Value(L, old);
if (p == NULL) {
return false;
}
p->data = new;
return true;
}
Status DoList_Update_By_Order(DoList L, int i, ElemType e) {
if (L == NULL) {
return false;
}
DoLNode *p = DoList_Retrieve_By_Order(L, i);
if (p == NULL) {
return input_error;
}
p->data = e;
return true;
}
Status DoList_Reverse(DoList *L) {
if (*L == NULL) {
return false;
}
DoLNode *p = (*L)->next, *q;
(*L)->prior = p;
(*L)->next = NULL;
while (p != NULL) {
q = p->next;
p->prior = q;
p->next = *L;
*L = p;
p = q;
}
return true;
}
void DoList_Traverse(DoList L, void(*visit)(ElemType e)) {
DoLNode *p = L;
while (p != NULL) {
visit(p->data);
p = p->next;
}
printf("NULL\n");
}
void dolinklist_menu(void) {
int choice;
DoList L = NULL;
ElemType e, old, new;
int i;
Status result;
do {
dolinklist_menu_show_details();
choice = judge_int();
system("cls");
switch (choice) {
case 0: // exit
break;
case 1: // Initialize
InitDoList(&L);
printf("Succeeded!\n");
break;
case 2: // Destroy
if (L == NULL) {
printf("The list is already NULL!\n");
}
else {
if (DestroyDoList(&L) == true) {
printf("Succeeded!\n");
}
else {
printf("Failed!\n");
}
}
break;
case 3: // Insert a node from head
get_input_element(&e);
system("cls");
if (DoList_Head_Insert(&L, e) == true) {
printf("Succeeded!\n");
}
else {
printf("Failed!\n");
}
break;
case 4: // Insert a node from tail
get_input_element(&e);
system("cls");
if (DoList_Tail_Insert(&L, e) == true) {
printf("Succeeded!\n");
}
else {
printf("Failed!\n");
}
break;
case 5: // Insert a node by order
get_order_position(&i);
get_input_element(&e);
system("cls");
result = DoList_Insert_By_Order(&L, i, e);
if (result == true) {
printf("Succeeded!\n");
}
else {
if (result == input_error) {
printf("Out of bounds!\n");
}
printf("Failed!\n");
}
break;
case 6: // Delete a node by order
if (L == NULL) {
printf("The list is NULL!\n");
}
else {
get_order_position(&i);
system("cls");
result = DoList_Delete_By_Order(&L, i, &e);
if (result == true) {
printf("Successfully deleted data: %d\n", e);
}
else {
if (result == input_error) {
printf("Out of bounds!\n");
}
printf("Failed!\n");
}
}
break;
case 7: // Delete a node by value
if (L == NULL) {
printf("The list is NULL!\n");
}
else {
get_input_element(&e);
system("cls");
if (DoList_Delete_By_Value(&L, e) == true) {
printf("Succeeded!\n");
}
else {
printf("Cannot find the element!\n");
}
}
break;
case 8: // Update a node by order
if (L == NULL) {
printf("The list is NULL!\n");
}
else {
get_order_position(&i);
get_input_element(&e);
system("cls");
result = DoList_Update_By_Order(L, i, e);
if (result == true) {
printf("Succeeded!\n");
}
else {
if (result == input_error) {
printf("Out of bounds!\n");
}
printf("Failed!\n");
}
}
break;
case 9: // Update a node by value
if (L == NULL) {
printf("The list is NULL!\n");
}
else {
get_input_element(&old);
get_input_element(&new);
system("cls");
if (DoList_Update_By_Value(L, old, new) == true) {
printf("Succeeded!\n");
}
else {
printf("Cannot find the element!\n");
}
}
break;
case 10: // reverse the list
if (L == NULL) {
printf("The list is NULL!\n");
}
else {
if (DoList_Reverse(&L) == true) {
printf("Succeeded!\n");
}
else {
printf("Failed!\n");
}
}
break;
default:
printf("Wrong input, please re-enter!\n");
break;
}
if (choice >= 1 && choice <= 10) {
printf("Current list: ");
DoList_Traverse(L, visit);
}
} while (choice != 0);
// release memory
if (L != NULL) {
DestroyDoList(&L);
}
}
void dolinklist_menu_show_details(void) {
printf("\n");
printf("\t**************************************************\n");
printf("\t* Double Linked List (without head) *\n");
printf("\t*------------------------------------------------*\n");
printf("\t* 1 | Initialize (Reset) *\n");
printf("\t*------------------------------------------------*\n");
printf("\t* 2 | Destroy *\n");
printf("\t*------------------------------------------------*\n");
printf("\t* 3 | Insert a node from head *\n");
printf("\t*------------------------------------------------*\n");
printf("\t* 4 | Insert a node from tail *\n");
printf("\t*-------------------------- ---------------------*\n");
printf("\t* 5 | Insert a node by order *\n");
printf("\t*------------------------------------------------*\n");
printf("\t* 6 | Delete a node by order *\n");
printf("\t*--------------------------- --------------------*\n");
printf("\t* 7 | Delete a node by value *\n");
printf("\t*------------------------------------------------*\n");
printf("\t* 8 | Update a node by order *\n");
printf("\t*------------------------------------------------*\n");
printf("\t* 9 | Update a node by value *\n");
printf("\t*------------------------------------------------*\n");
printf("\t* 10 | Reverse the list *\n");
printf("\t*------------------------------------------------*\n");
printf("\t* 0 | Back *\n");
printf("\t**************************************************\n");
printf("\nPlease enter the corresponding number(0-10): ");
}