拆分双向链表
实现
该算法的实现如下 −
#include <stdio.h> #include <stdlib.h> #include <stdio.h> #include <stdlib.h> struct node { int data; struct node *prev; struct node *next; }; struct node *list = NULL; struct node *list_last = NULL; struct node *even = NULL; struct node *even_last = NULL; struct node *odd = NULL; struct node *odd_last = NULL; struct node *current = NULL; //创建链接列表 void insert(int data) { // 为新节点分配内存; struct node *link = (struct node*) malloc(sizeof(struct node)); link->data = data; link->prev = NULL; link->next = NULL; // 如果 head 为空,则创建新列表 if(list == NULL) { list = link; return; } current = list; // 移至列表末尾 while(current->next!=NULL) current = current->next; // 在列表末尾插入链接 current->next = link; list_last = link; link->prev = current; } //display the list void print_backward(struct node *head) { struct node *ptr = head; printf(" [last] <=>"); //从头开始 while(ptr != NULL) { printf(" %d <=>",ptr->data); ptr = ptr->prev; } printf(" [head] "); } //display the list void printList(struct node *head) { struct node *ptr = head; printf(" [head] <=>"); //从头开始 while(ptr != NULL) { printf(" %d <=>",ptr->data); ptr = ptr->next; } printf(" [last] "); } void split_list() { // 为新节点分配内存; struct node *listp; struct node *link; struct node *current; listp = list; while(listp->next != NULL) { struct node *link = (struct node*) malloc(sizeof(struct node)); link->data = listp->data; link->prev = NULL; link->next = NULL; if(listp->data%2 == 0) { if(even == NULL) { even = link; even_last = link; listp = listp->next; continue; } else { current = even; while(current->next != NULL) { current = current->next; } // 在列表末尾插入链接 current->next = link; even_last = link; link->prev = current; listp = listp->next; } } else { if(odd == NULL) { odd = link; odd_last = link; listp = listp->next; continue; } else { current = odd; while(current->next!= NULL) { current = current->next; } // 在列表末尾插入链接 current->next = link; odd_last = link; link->prev = current; listp = listp->next; } } } // Lets handle the last node if(listp!=NULL) { link = (struct node*) malloc(sizeof(struct node)); link->data = listp->data; link->prev = NULL; link->next = NULL; if(listp->data%2 == 0) { current = even; while(current->next != NULL) { current = current->next; } // 在列表末尾插入链接 current->next = link; even_last = link; link->prev = current; } else { current = odd; while(current->next!= NULL) { current = current->next; } // 在列表末尾插入链接 current->next = link; odd_last = link; link->prev = current; } } } int main() { int i; for(i = 1; i <= 10; i++) insert(i); printf("Complete List : "); printList(list); printf("List in reverse: "); print_backward(list_last); split_list(); printf(" After splitting list - "); printf("Even : "); printList(even); printf("Odd : "); printList(odd); printf(" Splitted lists in reverse - "); printf("Even : "); print_backward(even_last); printf("Odd : "); print_backward(odd_last); return 0; }
输出
程序的输出应为 −
Complete List : [head] <=> 1 <=> 2 <=> 3 <=> 4 <=> 5 <=> 6 <=> 7 <=> 8 <=> 9 <=> 10 <=> [last] List in reverse: [last] <=> 10 <=> 9 <=> 8 <=> 7 <=> 6 <=> 5 <=> 4 <=> 3 <=> 2 <=> 1 <=> [head] After splitting list - Even : [head] <=> 2 <=> 4 <=> 6 <=> 8 <=> 10 <=> [last] Odd : [head] <=> 1 <=> 3 <=> 5 <=> 7 <=> 9 <=> [last] Splitted lists in reverse - Even : [last] <=> 10 <=> 8 <=> 6 <=> 4 <=> 2 <=> [head] Odd : [last] <=> 9 <=> 7 <=> 5 <=> 3 <=> 1 <=> [head]
linked_list_programs_in_c.html