-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathll_serial.c
131 lines (106 loc) · 1.77 KB
/
ll_serial.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
#include <stdio.h>
#include <limits.h>
#include "../common/alloc.h"
#include "ll.h"
typedef struct ll_node {
int key;
struct ll_node *next;
} ll_node_t;
struct linked_list {
ll_node_t *head;
};
/**
* Create a new linked list node.
**/
static ll_node_t *ll_node_new(int key)
{
ll_node_t *ret;
XMALLOC(ret, 1);
ret->key = key;
ret->next = NULL;
return ret;
}
/**
* Free a linked list node.
**/
static void ll_node_free(ll_node_t *ll_node)
{
XFREE(ll_node);
}
ll_t *ll_new()
{
ll_t *ret;
XMALLOC(ret, 1);
ret->head = ll_node_new(-1);
ret->head->next = ll_node_new(INT_MAX);
ret->head->next->next = NULL;
return ret;
}
void ll_free(ll_t *ll)
{
ll_node_t *next, *curr = ll->head;
while (curr) {
next = curr->next;
ll_node_free(curr);
curr = next;
}
XFREE(ll);
}
int ll_contains(ll_t *ll, int key)
{
ll_node_t *curr = ll->head;
int ret = 0;
while (curr->key < key)
curr = curr->next;
ret = (key == curr->key);
return ret;
}
int ll_add(ll_t *ll, int key)
{
int ret = 0;
ll_node_t *curr, *next;
ll_node_t *new_node;
curr = ll->head;
next = curr->next;
while (next->key < key) {
curr = next;
next = curr->next;
}
if (key != next->key) {
ret = 1;
new_node = ll_node_new(key);
new_node->next = next;
curr->next = new_node;
}
return ret;
}
int ll_remove(ll_t *ll, int key)
{
int ret = 0;
ll_node_t *curr, *next;
curr = ll->head;
next = curr->next;
while (next->key < key) {
curr = next;
next = curr->next;
}
if (key == next->key) {
ret = 1;
curr->next = next->next;
ll_node_free(next);
}
return ret;
}
void ll_print(ll_t *ll)
{
ll_node_t *curr = ll->head;
printf("LIST [");
while (curr) {
if (curr->key == INT_MAX)
printf(" -> MAX");
else
printf(" -> %d", curr->key);
curr = curr->next;
}
printf(" ]\n");
}