-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.c
53 lines (42 loc) · 887 Bytes
/
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
#include "list.h"
#include <stdlib.h>
#include <stdio.h>
void list_push(list_t** ihead, int data) {
if (ihead == NULL)
return;
list_t* node = malloc(sizeof(list_t));
node->next = *ihead;
node->data = data;
*ihead = node;
}
int list_pop(list_t** ihead) {
if (ihead == NULL || *ihead == NULL)
return -1;
list_t* node = *ihead;
int data = node->data;
*ihead = node->next;
free(node);
return data;
}
void list_free(list_t** ihead) {
if (ihead == NULL || *ihead == NULL)
return;
while (*ihead != NULL) {
list_t* node = *ihead;
*ihead = node->next;
free(node);
}
}
void list_print(list_t* head, list_t* end) {
printf("[ ");
while (head != NULL) {
if (head->next == end) {
printf("%d", head->data);
break;
}
printf("%d, ", head->data);
head = head->next;
}
printf(" ]\n");
return;
}