-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.c
186 lines (155 loc) · 2.75 KB
/
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
#include <stdlib.h>
#include <stdio.h>
#include "list.h"
list_t list_list()
{
list_t list = {NULL};
return list;
}
void list_add(list_t *list, void *obj)
{
node_t *head = list->head;
for(head; head && head->right; head = head->right);
if(!head)
{
head = malloc(sizeof(node_t));
list->head = head;
head->right = NULL;
}
else
{
head->right = malloc(sizeof(node_t));
head = head->right;
head->right = NULL;
}
head->obj = obj;
}
void list_remove_obj(list_t *list, void *obj)
{
node_t *node = list->head;
node_t *prev = NULL;
for(node; node; node = node->right)
{
if(node->obj == obj)
{
if(node == list->head)
{
list->head = node->right;
free(node);
break;
}
prev->right = node->right;
free(node);
break;
}
prev = node;
}
}
int list_index_of(list_t *list, void *obj)
{
node_t *node = list->head;
int ret = -1;
int i;
for(i = 0; node; node = node->right, i++)
{
if(node->obj == obj)
{
ret = i;
break;
}
}
return ret;
}
void list_remove_idx(list_t *list, int idx)
{
node_t *node = list->head;
node_t *prev = NULL;
int i;
for(i = 0; node; node = node->right, i++)
{
if(i == idx)
{
if(node == list->head)
{
list->head = node->right;
free(node);
break;
}
prev->right = node->right;
free(node);
break;
}
}
}
void *list_obj_at(list_t *list, int idx)
{
node_t *node = list->head;
int i;
for(i = 0; node; node = node->right, i++)
{
if(i == idx)
return node->obj;
}
return NULL;
}
void list_for_each(list_t *list, ListIter iter, voidptr data)
{
node_t *node = list->head;
for(node; node; node = node->right)
{
iter(node->obj, data);
}
}
// void list_for_each_bool(list_t *list, BoolIter iter, voidptr data, FailedNodeFunc failed)
// {
// node_t *node = list->head;
// node_t *prev = NULL;
// int idx;
// for(idx = 0; node; node = node->right, idx++)
// {
// char result = iter(node->obj, data);
// if(!result)
// {
// failed(node->obj);
// list_remove_obj(list, node->obj);
// node = prev ? prev : list->head;
// }
// prev = node;
// }
// }
void list_clear_list(void *list, void *data)
{
free(list);
}
void list_for_each_bool(list_t *list, BoolIter iter, voidptr data, FailedNodeFunc failed)
{
list_t broken = list_list();
node_t *node;
for(node = list->head; node; node = node->right)
{
char result = iter(node->obj, data);
if(!result)
{
failed(node->obj);
list_add(&broken, node);
}
}
list_for_each(&broken, list_clear_list, NULL);
}
int list_count(list_t *list)
{
node_t *node = list->head;
int i;
for(node, i = 0; node; node = node->right, i++);
return i;
}
void list_free(list_t *list)
{
node_t *node = list->head;
while(node)
{
node_t *next = node->right;
free(node);
node = next;
}
}