-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStaLinkList.c
503 lines (441 loc) · 13.5 KB
/
StaLinkList.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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
//
// Created by Maylon on 2022/7/21.
//
#include "StaLinkList.h"
Status InitStaList(StaLinkList **L) {
*L = (StaLinkList *) malloc(sizeof(StaLinkList) * MaxSize); // array head pointer
if (*L == NULL) {
return false;
}
(**L)[0].next = -1; // -1: end position of the list
for (int i = 1; i < MaxSize; i++) {
(**L)[i].next = -2; // -2: unused node
}
return true;
}
Status DestroyStaList(StaLinkList **L) {
if (*L == NULL) {
return false;
}
free(*L);
*L = NULL;
return true;
}
int StaList_Retrieve_Position(StaLinkList *L) {
int pos;
for (int i = 1; i < MaxSize; i++) {
pos = (*L)[i].next;
if (pos == -2) {
return i;
}
}
return -1;
}
Status StaList_Head_Insert(StaLinkList *L, ElemType e) {
if (*L == NULL) {
return false;
}
int pos = StaList_Retrieve_Position(L);
if (pos == -1) {
return list_full;
}
(*L)[pos].data = e;
(*L)[pos].next = (*L)[0].next;
(*L)[0].next = pos;
return true;
}
Status StaList_Tail_Insert(StaLinkList *L, ElemType e) {
if (*L == NULL) {
return false;
}
int pos = StaList_Retrieve_Position(L);
if (pos == -1) {
return list_full;
}
int t = 0;
while (t < MaxSize) { // find tail position
if ((*L)[t].next == -1) {
break;
}
t++;
}
(*L)[pos].data = e;
(*L)[pos].next = -1;
(*L)[t].next = pos;
return true;
}
Status StaList_Insert_By_Order(StaLinkList *L, int i, ElemType e) {
if (*L == NULL) {
return false;
}
if (i < 1) { // out of bounds
return input_error;
}
int pos = StaList_Retrieve_Position(L);
if (pos == -1) {
return list_full;
}
int j = 0;
int t = 0;
while ((*L)[t].next != -1 && i != j + 1) {
t = (*L)[t].next;
j++;
}
if (i > j + 1) { // out of bounds;
return input_error;
}
(*L)[pos].data = e;
(*L)[pos].next = (*L)[t].next;
(*L)[t].next = pos;
return true;
}
Status StaList_Delete_By_Value(StaLinkList *L, ElemType e) {
if (*L == NULL || (*L)[0].next == -1) {
return false;
}
int p_prior = 0, p = (*L)[0].next;
while (p != -1) { // find the position
if ((*L)[p].data == e) {
break;
}
p_prior = p;
p = (*L)[p].next;
}
if (p == -1) {
return false;
}
else {
(*L)[p_prior].next = (*L)[p].next;
(*L)[p].next = -2;
return true;
}
}
Status StaList_Delete_By_Order(StaLinkList *L, int i, ElemType *e) {
if (*L == NULL || (*L)[0].next == -1) {
return false;
}
if (i < 1) { // out of bounds
return input_error;
}
int j = 1;
int p_prior = 0, p = (*L)[0].next;
while ((*L)[p].next != -1) {
if (i == j) {
break;
}
p_prior = p;
p = (*L)[p].next;
j++;
}
if (i > j) { // out of bounds
return input_error;
}
(*L)[p_prior].next = (*L)[p].next;
*e = (*L)[p].data;
(*L)[p].next = -2;
return true;
}
int StaList_Retrieve_By_Value(StaLinkList *L, ElemType e) {
if (*L == NULL) {
return -1;
}
int pos = (*L)[0].next;
while (pos != -1) {
if ((*L)[pos].data == e) {
break;
}
pos = (*L)[pos].next;
}
return pos;
}
int StaList_Retrieve_By_Order(StaLinkList *L, int i) {
if (*L == NULL) {
return -1;
}
if (i < 1) { // out of bounds
return -1;
}
int j = 1;
int pos = (*L)[0].next;
while (pos != -1) {
if (i == j) {
break;
}
pos = (*L)[pos].next;
j++;
}
if (i > j) { // out of bounds
return -1;
}
return pos;
}
Status StaList_Update_By_Value(StaLinkList *L, ElemType old, ElemType new) {
if (*L == NULL || (*L)[0].next == -1) {
return false;
}
int pos = StaList_Retrieve_By_Value(L, old);
if (pos == -1) {
return false;
}
(*L)[pos].data = new;
return true;
}
Status StaList_Update_By_Order(StaLinkList *L, int i, ElemType e) {
if (*L == NULL || (*L)[0].next == -1) {
return false;
}
int pos = StaList_Retrieve_By_Order(L, i);
if (pos == -1) {
return input_error;
}
(*L)[pos].data = e;
return true;
}
Status StaList_Reverse(StaLinkList *L) {
if (*L == NULL || (*L)[0].next == -1) {
return false;
}
int p = (*L)[0].next, q;
(*L)[0].next = -1;
while (p != -1) {
q = (*L)[p].next;
(*L)[p].next = (*L)[0].next;
(*L)[0].next = p;
p = q;
}
return true;
}
Status StaList_Traverse(StaLinkList *L, void(*visit)(ElemType e)) {
if (*L == NULL) {
return false;
}
int i = (*L)[0].next;
while (i != -1) {
visit((*L)[i].data);
i = (*L)[i].next;
}
printf("NULL\n");
return true;
}
void stalinklist_menu(void) {
int choice;
StaLinkList *L = NULL;
ElemType e, old, new;
int i;
Status result;
do {
stalinklist_menu_show_details();
choice = judge_int();
system("cls");
switch (choice) {
case 0: // exit
break;
case 1: // Initialize
if (InitStaList(&L) == true) {
printf("Succeeded!\n");
printf("Current list: NULL\n");
}
else {
printf("Failed!\n");
}
break;
case 2: // Destroy
if (L == NULL) {
printf("The list is already NULL!\n");
}
else {
if (DestroyStaList(&L) == true) {
printf("Succeeded!\n");
}
else {
printf("Failed!\n");
}
}
break;
case 3: // Insert a node from head
if (L == NULL) {
printf("The list is NULL!\n");
}
else {
get_input_element(&e);
system("cls");
result = StaList_Head_Insert(L, e);
if (result == true) {
printf("Succeeded!\n");
}
else {
if (result == list_full) {
printf("List is already full!\n");
}
printf("Failed!\n");
}
}
break;
case 4: // Insert a node from tail
if (L == NULL) {
printf("The list is NULL!\n");
}
else {
get_input_element(&e);
system("cls");
result = StaList_Tail_Insert(L, e);
if (result == true) {
printf("Succeeded!\n");
}
else {
if (result == list_full) {
printf("List is already full!\n");
}
printf("Failed!\n");
}
}
break;
case 5: // Insert 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 = StaList_Insert_By_Order(L, i, e);
if (result == true) {
printf("Succeeded!\n");
}
else {
if (result == input_error) {
printf("Out of bounds!\n");
}
else if (result == list_full) {
printf("List is already full!\n");
}
printf("Failed!\n");
}
}
break;
case 6: // Delete a node by order
if (L == NULL || (*L)[0].next == -1) {
printf("The list is NULL!\n");
}
else {
get_order_position(&i);
system("cls");
result = StaList_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 || (*L)[0].next == -1) {
printf("The list is NULL!\n");
}
else {
get_input_element(&e);
system("cls");
if (StaList_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 || (*L)[0].next == -1) {
printf("The list is NULL!\n");
}
else {
get_order_position(&i);
get_input_element(&e);
system("cls");
result = StaList_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 || (*L)[0].next == -1) {
printf("The list is NULL!\n");
}
else {
get_input_element(&old);
get_input_element(&new);
system("cls");
if (StaList_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 || (*L)[0].next == -1) {
printf("The list is NULL!\n");
}
else {
if (StaList_Reverse(L) == true) {
printf("Succeeded!\n");
}
else {
printf("Failed!\n");
}
}
break;
default:
printf("Wrong input, please re-enter!\n");
break;
}
if (choice >= 3 && choice <= 10 && L != NULL) {
printf("Current list: ");
StaList_Traverse(L, visit);
}
} while (choice != 0);
// release memory
if (L != NULL) {
DestroyStaList(&L);
}
}
void stalinklist_menu_show_details(void) {
printf("\n");
printf("\t**************************************************\n");
printf("\t* Static Linked List (with a head node) *\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): ");
}