# HG changeset patch # User Mike Becker # Date 1325353608 -3600 # Node ID 9cd2b2460db015c4902402d7cf078466f4312934 # Parent 68091406d1cff393e3b19363b8164941339ffeb5 completed dlist diff -r 68091406d1cf -r 9cd2b2460db0 ucx/dlist.c --- a/ucx/dlist.c Sat Dec 31 18:18:03 2011 +0100 +++ b/ucx/dlist.c Sat Dec 31 18:46:48 2011 +0100 @@ -1,15 +1,50 @@ #include "dlist.h" +void ucx_dlist_free(UcxDlist *l) { + UcxDlist *e = l, *f; + while (e != NULL) { + f = e; + e = e->next; + free(f); + } +} + UcxDlist *ucx_dlist_append(UcxDlist *l, void *data) { + UcxDlist *nl = (UcxDlist*) malloc(sizeof(UcxDlist)); + if (nl == NULL) return NULL; + nl->data = data; + nl->next = NULL; + if (l == NULL) { + return nl; + } else { + UcxDlist *t = ucx_dlist_last(l); + t->next = nl; + nl->prev = t; + return l; + } } UcxDlist *ucx_dlist_prepend(UcxDlist *l, void *data) { + UcxDlist *nl = ucx_dlist_append(NULL, data); + if (nl == NULL) return NULL; + if (l != NULL) { + nl->next = l; + l->prev = nl; + } + return nl; } UcxDlist *ucx_dlist_concat(UcxDlist *l1, UcxDlist *l2) { - + if (l1 == NULL) { + return l2; + } else { + UcxDlist *last = ucx_dlist_last(l1); + last->next = l2; + l2->prev = last; + return l1; + } } UcxDlist *ucx_dlist_last(UcxDlist *l) { @@ -23,7 +58,15 @@ } UcxDlist *ucx_dlist_get(UcxDlist *l, int index) { + if (l == NULL) return NULL; + + UcxDlist *e = l; + while (e->next != NULL && index > 0) { + e = e->next; + index--; + } + return index == 0 ? e : NULL; } size_t ucx_dlist_size(UcxDlist *l) { @@ -40,10 +83,20 @@ } void ucx_dlist_foreach(UcxDlist *l, ucx_callback fnc, void* data) { - + UcxDlist *e = l; + while (e != NULL) { + fnc(e, data); + e = e->next; + } } /* dlist specific functions */ UcxDlist *ucx_dlist_first(UcxDlist *l) { + if (l == NULL) return NULL; + UcxDlist *e = l; + while (e->prev != NULL) { + e = e->prev; + } + return e; } \ No newline at end of file diff -r 68091406d1cf -r 9cd2b2460db0 ucx/dlist.h --- a/ucx/dlist.h Sat Dec 31 18:18:03 2011 +0100 +++ b/ucx/dlist.h Sat Dec 31 18:46:48 2011 +0100 @@ -19,6 +19,7 @@ UcxDlist *prev; }; +void ucx_dlist_free(UcxDlist *l); UcxDlist *ucx_dlist_append(UcxDlist *l, void *data); UcxDlist *ucx_dlist_prepend(UcxDlist *l, void *data); UcxDlist *ucx_dlist_concat(UcxDlist *l1, UcxDlist *l2);