-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoubly_list.c
264 lines (198 loc) · 6.93 KB
/
doubly_list.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
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
typedef struct Node {
int data;
struct Node *prev;
struct Node *next;
} Node;
typedef struct {
size_t len;
struct Node*head;
} List;
List* list_init() {
List *list = malloc(sizeof(List));
if (!list) {
fprintf(stderr, "error: memory allocation failed!\n");
exit(-1);
}
list->head = NULL;
list->len = 0;
return list;
}
void list_clear(List *self) {
if (self->len <= 0)
return;
Node *current = self->head;
Node *next;
for ( ; self->len > 0; self->len--) {
next = current->next;
free(current);
current = next;
}
self->head = NULL;
}
void list_deinit(List **self) {
list_clear(*self); // Deallocate the list nodes
free(*self); // Deallocate the list structure
*self = NULL; // Remove the pointer reference to the list
}
Node* new_node(Node* prev, int data, Node *next) {
Node *node = malloc(sizeof(Node));
if (!node) {
fprintf(stderr, "error: memory allocation failed!\n");
exit(-1);
}
node->prev = prev;
node->data = data;
node->next = next;
return node;
}
size_t list_len(const List *self) {
return self->len;
}
int list_is_empty(const List *self) {
return (self->len <= 0);
}
// Adds an element to the head of the list.
void list_add(List *self, int val) {
if (self->len <= 0) {
self->head = new_node(NULL, val, NULL);
} else {
self->head->prev = new_node(NULL, val, self->head);
self->head = self->head->prev;
}
self->len++;
}
// Appends an element at the end of the list.
void list_append(List *self, int val) {
if (self->len <= 0) {
self->head = new_node(NULL, val, NULL);
} else {
Node *temp = self->head;
while (temp->next != NULL)
temp = temp->next;
temp->next = new_node(temp, val, NULL);
}
self->len++;
}
// Inserts an element at the specified position in the list.
// If the position is greater than the length of the list or less than 0,
// the element is either added to the head (if pos < 0) or appended to the end (if pos > length).
void list_insert(List *self, int val, size_t pos) {
if (pos > self->len || pos < 0 || self->len <= 0) {
return (pos < 0 ? list_add(self, val) : list_append(self, val));
}
// Use a double pointer to update the node
Node **temp = &self->head;
for (size_t i = 0; i < pos; i++)
temp = &(*temp)->next;
// Create a new node to be inserted, updating the necessary pointers
Node *fresh_node = new_node((*temp)->prev, val, *temp);
(*temp)->prev = fresh_node; // Update the previous pointer of the node to be replaced
*temp = fresh_node; // Replace the node at the desired position with the new node
self->len++;
}
// Removes and returns the first element from the list.
int list_chop(List *self) {
if (self->len <= 0) {
fprintf(stderr, "error: fail to chop, list is empty!\n");
return -1;
}
int rem_elem = self->head->data;
Node *head = self->head;
self->head = head->next; // new head
self->head->prev = head->prev; // update new head previus node pointer
free(head);
self->len--;
return rem_elem;
}
// Removes the first occurrence of the specified value from the list.
int list_remove(List *self, int val) {
if (self->len <= 0) {
fprintf(stderr, "error: fail to remove, list is empty!\n");
return -1;
}
Node *temp = self->head;
while (temp->data != val && temp->next != NULL)
temp = temp->next;
if (temp->data == val) {
temp->prev->next = temp->next;
self->len--;
free(temp);
return val;
}
return -1;
}
// Removes and returns the last element from the list.
int list_pop(List *self) {
if (self->len <= 0) {
fprintf(stderr, "error: fail to pop, list is empty!\n");
return -1;
}
Node *temp = self->head;
while (temp->next != NULL)
temp = temp->next;
int rem_elem = temp->data;
temp->prev->next = NULL;
free(temp);
self->len--;
return rem_elem;
}
void list_display(const List *self) {
if (self->len <= 0) {
fprintf(stderr, "list is empty!\n");
return;
}
for (Node *curr = self->head; curr != NULL; curr = curr->next)
printf("%d->", curr->data);
printf("STOP\n");
}
int main() {
// Initialize a circular list
List *list = list_init();
// Test adding elements to the head
list_add(list, 1);
list_add(list, 2);
list_add(list, 3);
// Display the list: Expected output: 3->2->1->
list_display(list);
// Test appending elements at the end
list_append(list, 4);
list_append(list, 5);
list_append(list, 6);
// Display the list: Expected output: 3->2->1->4->5->6->
list_display(list);
// Test inserting an element at a specific position
list_insert(list, 10, 2);
list_insert(list, 20, 5);
// Display the list: Expected output: 3->2->10->1->4->20->5->6->
list_display(list);
// Test removing an element from the head
int removed = list_chop(list);
printf("Removed element: %d\n", removed); // Expected output: 3
// Display the list: Expected output: 2->10->1->4->20->5->6->
list_display(list);
// Test removing the first occurrence of a specific value
int removed_value = list_remove(list, 4);
printf("Removed element: %d\n", removed_value); // Expected output: 4
// Display the list: Expected output: 2->10->1->20->5->6->
list_display(list);
// Test removing an element from the end
int popped = list_pop(list);
printf("Popped element: %d\n", popped); // Expected output: 6
// Display the list: Expected output: 2->10->1->20->5->
list_display(list);
// Clear the list
list_clear(list);
// Display the list after clearing: Expected output: list is empty!
list_display(list);
// Test inserting elements after clearing
list_insert(list, 100, 0);
list_insert(list, 200, 1);
// Display the list: Expected output: 200->100->
list_display(list);
// Deallocate memory and deinitialize the list
list_deinit(&list);
return 0;
}