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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
|
/*C
(c) 2005 bl0rg.net
**/
#include "conf.h"
#include <stdlib.h>
#include <assert.h>
#include "dlist.h"
#ifdef DMALLOC
#include <dmalloc.h>
#endif
/*M
\emph{Initialize a double-linked head structure.}
**/
void dlist_init(dlist_head_t *head) {
assert(head != NULL);
head->num = 0;
head->dlist = head->end = NULL;
}
/*M
\emph{Allocate and initialize a double-linked list node structure.}
**/
dlist_t *dlist_new(void *data) {
dlist_t *dlist = malloc(sizeof(dlist_t));
if (dlist) {
dlist->next = NULL;
dlist->prev = NULL;
dlist->data = data;
}
return dlist;
}
/*M
\emph{Free a double-linked list node structure.}
**/
void dlist_free(dlist_t *dlist) {
assert(dlist != NULL);
free(dlist);
}
/*M
\emph{Free a double-linked list node structure by calling a custom
free operation on the nodes data.}
**/
void dlist_delete(dlist_t *dlist,
void (*free)(void *data)) {
assert(dlist != NULL);
if (dlist->data && free)
free(dlist->data);
dlist_free(dlist);
}
/*M
\emph{Destroy a complete double-linked list.}
Calls a custom delete operation on each node in the double-linked list.
**/
void dlist_destroy(dlist_head_t *head,
void (*free)(void *data)) {
assert(head != NULL);
dlist_t *dlist, *next;
head->num = 0;
head->end = NULL;
if (!(next = head->dlist))
return;
while (next) {
dlist = next;
next = dlist->next;
dlist_delete(dlist, free);
}
}
/*M
\emph{Create a node in front of a node in a double-linked list.}
Allocates a new double-linked list node structure, initializes it
with data and inserts it in front of a specific node in the list.
**/
dlist_t *dlist_ins_before(dlist_head_t *head, dlist_t *dlist, void *data) {
assert(head != NULL);
assert(dlist != NULL);
dlist_t *tmp = dlist_new(data);
if (!tmp)
return NULL;
if (dlist_insl_before(head, dlist, tmp)) {
return tmp;
} else {
dlist_delete(tmp, NULL);
return NULL;
}
}
/*M
\emph{Insert a node after a node in a double-linked list.}
Inserts a node after a specific node in the double-linked list.
**/
int dlist_insl_after(dlist_head_t *head, dlist_t *dlist, dlist_t *new) {
assert(head != NULL);
assert(dlist != NULL);
assert(new != NULL);
new->next = dlist->next;
if (new->next)
new->next->prev = new;
dlist->next = new;
new->prev = dlist;
if (dlist == head->end)
head->end = new;
head->num++;
return 1;
}
/*M
\emph{Creates a node after a node in a double-linked list.}
Allocates a new double-linked list node structure, initializes it
with data and inserts it in front of a specific node in the list.
**/
dlist_t *dlist_ins_after(dlist_head_t *head, dlist_t *dlist, void *data) {
assert(head != NULL);
assert(dlist != NULL);
dlist_t *tmp = dlist_new(data);
if (!tmp)
return NULL;
if (dlist_insl_after(head, dlist, tmp)) {
return tmp;
} else {
dlist_delete(tmp, NULL);
return NULL;
}
}
/*M
\emph{Insert a node before a node in a double-linked list.}
Inserts a node before a specific node in the double-linked list.
**/
int dlist_insl_before(dlist_head_t *head, dlist_t *dlist, dlist_t *new) {
if (!head || !dlist || !new)
return 0;
new->prev = dlist->prev;
if (new->prev)
new->prev->next = new;
dlist->prev = new;
new->next = dlist;
if (dlist == head->dlist)
head->dlist = new;
head->num++;
return 1;
}
/*M
\emph{Insert a node at the end of a double-linked list.}
**/
int dlist_insl_end(dlist_head_t *head,
dlist_t *dlist) {
if (!head || !dlist)
return 0;
if (!head->dlist || !head->end) {
head->dlist = dlist;
head->end = dlist;
head->num = 1;
return 1;
} else {
return dlist_insl_after(head, head->end, dlist);
}
}
/*M
\emph{Insert a node at the front of a double-linked list.}
**/
int dlist_insl_front(dlist_head_t *head,
dlist_t *dlist) {
if (!head || !dlist)
return 0;
if (!head->dlist) {
head->dlist = dlist;
head->end = dlist;
head->num = 1;
return 1;
} else {
return dlist_insl_before(head, head->dlist, dlist);
}
}
/*M
\emph{Creates a new node at the end of a double-linked list.}
Initializes the node with data.
**/
dlist_t *dlist_ins_end(dlist_head_t *head, void *data) {
dlist_t *dlist = dlist_new(data);
if (!dlist)
return NULL;
if (dlist_insl_end(head, dlist)) {
return dlist;
} else {
dlist_delete(dlist, NULL);
return NULL;
}
}
/*M
\emph{Creates a new node at the front of a double-linked list.}
Initializes the node with data.
**/
dlist_t *dlist_ins_front(dlist_head_t *head, void *data) {
dlist_t *dlist = dlist_new(data);
if (!dlist)
return NULL;
if (dlist_insl_front(head, dlist)) {
return dlist;
} else {
dlist_delete(dlist, NULL);
return NULL;
}
}
/*M
\emph{Pops off a specific node in a double-linked list.}
**/
dlist_t *dlist_getl(dlist_head_t *head, dlist_t *dlist) {
dlist_t *tmp = head->dlist;
int found = 0;
if (!head || !dlist || !tmp)
return NULL;
if (head->dlist == dlist) {
head->dlist = dlist->next;
if (head->dlist)
head->dlist->prev = NULL;
found = 1;
}
if (head->end == dlist) {
head->end = dlist->prev;
if (head->end)
head->end->next = NULL;
found = 1;
}
if (!found) {
while (tmp->next && (tmp->next != dlist)) {
tmp = tmp->next;
}
if (!tmp->next) {
return NULL;
} else {
if ((tmp->next = dlist->next)) {
tmp->next->prev = tmp;
}
}
}
head->num--;
dlist->prev = dlist->next = NULL;
return dlist;
}
/*M
\emph{Pops off a specific node from a double-linked list and returns
data.}
Frees the popped off node.
**/
void *dlist_get(dlist_head_t *head, dlist_t *dlist) {
dlist_t *tmp = dlist_getl(head, dlist);
void *data;
if (!tmp)
return NULL;
else {
data = tmp->data;
dlist_free(tmp);
return data;
}
}
/*M
\emph{Pops off the last node in a double-linked list.}
**/
dlist_t *dlist_getl_end(dlist_head_t *head) {
return dlist_getl(head, head->end);
}
/*M
\emph{Pops off the front node in a double-linked list.}
**/
dlist_t *dlist_getl_front(dlist_head_t *head) {
return dlist_getl(head, head->dlist);
}
/*M
\emph{Returns the data of the last node in a double-linked list.}
Pops off and frees the last node.
**/
void *dlist_get_end(dlist_head_t *head) {
return dlist_get(head, head->end);
}
/*M
\emph{Returns the data of the front node in a double-linked list.}
Pops off and frees the front node.
**/
void *dlist_get_front(dlist_head_t *head) {
return dlist_get(head, head->dlist);
}
/*M
\emph{Returns the data of the first node.}
Does not pop off the first node.
**/
void *dlist_front(dlist_head_t *head) {
assert(head != NULL);
assert(head->dlist != NULL);
return head->dlist->data;
}
/*M
\emph{Returns the data of the last node.}
Does not pop off the first node.
**/
void *dlist_end(dlist_head_t *head) {
assert(head != NULL);
assert(head->end != NULL);
return head->end->data;
}
/*M
\emph{Search a double-linked list for a matching node.}
Returns the data of the node for which the dual operand operation
returns TRUE. Calls the dual operand operation with the nodes data
and the seed parameter data, passing the seed as first argument.
**/
dlist_t *dlist_search(dlist_head_t *head,
void *data,
int (*cmp)(void *data, void *data2)) {
dlist_t *dlist;
if (!head || !head->dlist)
return NULL;
dlist = head->dlist;
while (dlist) {
if (cmp(data, dlist->data))
return dlist;
dlist = dlist->next;
}
return NULL;
}
/*C
**/
#ifdef DLIST_TEST
#include <stdio.h>
int test_cmp(int *a, int *b) {
if (*a == *b)
return 1;
return 0;
}
void test_free(int *a) {
free(a);
}
int main(void) {
dlist_head_t head;
dlist_t *list;
int *a[15], i;
dlist_init(&head);
for (i = 0; i < 15; i++) {
a[i] = malloc(sizeof(int));
*a[i] = i;
if (!dlist_ins_end(&head, a[i]))
break;
}
while ((list = dlist_getl(&head, head.dlist)))
dlist_delete(list, DLIST_OP(test_free));
dlist_destroy(&head, DLIST_OP(test_free));
return 1;
}
#endif /* DLIST_TEST */
|