extern void abort(void); #include void reach_error() { assert(0); } /* * Create circular dll of size 2: 1-1 * Append node with data = 1. Check result: 1-1-1 */ #include typedef struct node { struct node *next; struct node *prev; int data; } *DLL; void myexit(int s) { _EXIT: goto _EXIT; } DLL node_create(int data) { DLL temp = (DLL) malloc(sizeof(struct node)); if(NULL == temp) { myexit(1); } temp->next = NULL; temp->prev = NULL; temp->data = data; return temp; } DLL dll_circular_create(int len, int data) { DLL head = node_create(data); DLL last = head; while(len > 1) { DLL new_head = node_create(data); new_head->next = head; if(head) { head->prev = new_head; } head = new_head; len--; } last->next = head; head->prev = last; return head; } void dll_circular_destroy(DLL head) { if(NULL != head) { DLL p = head->next; while(p != head) { DLL q = p->next; free(p); p = q; } free(head); } } void dll_circular_append(DLL* head, int data) { DLL new_last = node_create(data); if(NULL == *head) { new_last->prev = new_last; new_last->next = new_last; *head = new_last; } else { DLL last = (*head)->prev; last->next = new_last; new_last->prev = last; new_last->next = *head; (*head)->prev = new_last; } } int main(void) { const int len = 2; const int data = 1; DLL s = dll_circular_create(len, data); dll_circular_append(&s, data); DLL ptr = s; int count = 0; do { if(data != ptr->data) { goto ERROR; } ptr = ptr->next; count++; } while(ptr != s); if(count != 1 + len) { goto ERROR; } dll_circular_destroy(s); return 0; ERROR: {reach_error();abort();} return 1; }