-
Notifications
You must be signed in to change notification settings - Fork 5
/
List.c
233 lines (177 loc) · 4.19 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
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
/*
pconsole WJ101
Copyright (C) 2001 Walter de Jong <walter@heiho.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
List.c WJ98
*/
#include "config.h"
#include "List.h"
#include <stdlib.h>
#ifndef NULL
#define NULL 0
#endif
void *prepend_List(void *v1, void *v2) {
ListType **root, *l;
if (v1 == NULL)
return NULL;
root = (ListType **)v1;
l = (ListType *)v2;
if (l == NULL)
return (void *)*root;
l->prev = NULL;
l->next = *root;
if (l->next != NULL)
l->next->prev = l;
*root = l;
return l;
}
void *add_List(void *v1, void *v2) {
ListType **root, *l;
if (v1 == NULL)
return NULL;
root = (ListType **)v1;
l = (ListType *)v2;
if (l == NULL)
return (void *)*root;
l->prev = l->next = NULL;
if (*root == NULL)
*root = l;
else {
ListType *lp;
/* Link in at the end of the list */
for(lp = *root; lp->next != NULL; lp = lp->next);
lp->next = l;
l->prev = lp;
}
return (void *)l;
}
/*
Note: listdestroy_List() now auto-rewinds the list (!)
*/
void listdestroy_List(void *v1, void *v2) {
ListType *l, *l2;
void (*destroy_func)(ListType *);
if (v1 == NULL || v2 == NULL)
return;
l = (ListType *)v1;
destroy_func = (void (*)(ListType *))v2;
while(l->prev != NULL) /* auto-rewind */
l = l->prev;
while(l != NULL) {
l2 = l->next;
destroy_func(l);
l = l2;
}
}
void *concat_List(void *v1, void *v2) {
ListType **root, *l;
if (v1 == NULL)
return NULL;
root = (ListType **)v1;
l = (ListType *)v2;
if (l == NULL)
return (void *)*root;
if (*root == NULL)
*root = l;
else {
ListType *p;
for(p = *root; p->next != NULL; p = p->next);
p->next = l;
l->prev = p;
}
return (void *)l;
}
void remove_List(void *v1, void *v2) {
ListType **root, *l;
if (v1 == NULL || v2 == NULL)
return;
root = (ListType **)v1;
l = (ListType *)v2;
if (*root == NULL)
return;
if (l->prev == NULL) /* must be in root node */
*root = l->next;
else
l->prev->next = l->next;
if (l->next != NULL)
l->next->prev = l->prev;
l->next = l->prev = NULL;
}
int list_Count(void *v) {
ListType *l;
int c = 0;
for(l = (ListType *)v; l != NULL; l = l->next)
c++;
return c;
}
void *rewind_List(void *v) {
ListType *root;
if (v == NULL)
return NULL;
root = (ListType *)v;
while(root->prev != NULL)
root = root->prev;
return root;
}
void *unwind_List(void *v) {
ListType *root;
if (v == NULL)
return NULL;
root = (ListType *)v;
while(root->next != NULL)
root = root->next;
return root;
}
/*
sort a list using qsort()
*/
void *sort_List(void *v, int (*sort_func)(void *, void *)) {
ListType *root, *p, **arr;
int count, i;
if (v == NULL)
return NULL;
root = (ListType *)v;
if (sort_func == NULL)
return root;
count = 0;
for(p = root; p != NULL; p = p->next) /* count # of elements */
count++;
if (count <= 1) /* nothing to be sorted */
return root;
if ((arr = (ListType **)malloc(count * sizeof(ListType *))) == NULL)
return root; /* malloc() failed, return root */
/* fill the array of pointers */
p = root;
for(i = 0; i < count; i++) {
arr[i] = p;
p = p->next;
}
/* do the sorting (we include a nasty typecast here for convenience) */
qsort(arr, count, sizeof(ListType *), (int (*)(const void *, const void *))sort_func);
/* rearrange the prev and next pointers */
arr[0]->prev = NULL;
arr[0]->next = arr[1];
for(i = 1; i < count-1; i++) {
arr[i]->prev = arr[i-1];
arr[i]->next = arr[i+1];
}
arr[i]->prev = arr[i-1];
arr[i]->next = NULL;
/* free the array and return new root */
root = arr[0];
free(arr);
return root;
}
/* EOB */