Cách chia một danh sách liên kết đơn trong C
Bài tập C: chia một danh sách liên kết đơn
Bài tập C này giúp bạn làm quen dần với cách tạo danh sách liên kết đơn và cách chia một danh sách liên kết đơn trong C. Để giải bài tập này, mình sử dụng cấu trúc struct trong C.
Chương trình C
Dưới đây là chương trình C để giải bài tập chia một danh sách liên kết đơn trong C:
#include#include struct node { int data; struct node *next; };struct node *even = NULL; struct node *odd = NULL; struct node *list = NULL;//tao danh sach lien ket void insert(int data) { // cap phat bo nho cho node moi; struct node *link = (struct node*) malloc(sizeof(struct node)); struct node *current; link->data = data; link->next = NULL; if(list == NULL) { list = link; return; } current = list; while(current->next!=NULL) current = current->next; // chen link vao phan cuoi cua list current->next = link; }void display(struct node *head) { struct node *ptr = head; printf("[head] =>"); //bat dau tu phan dau cua list while(ptr != NULL) { printf(" %d =>",ptr->data); ptr = ptr->next; } printf(" [null]\n"); }void split_list() { // cap phat bo nho cho node moi; struct node *link; struct node *current; while(list != NULL) { struct node *link = (struct node*) malloc(sizeof(struct node)); link->data = list->data; link->next = NULL; if(list->data%2 == 0) { if(even == NULL) { even = link; list = list->next; continue; }else { current = even; while(current->next != NULL) current = current->next; // chen link vao phan cuoi cua list current->next = link; } list = list->next; }else { if(odd == NULL) { odd = link; list = list->next; continue; }else { current = odd; while(current->next!=NULL) current = current->next; // chen link vao phan cuoi cua list current->next = link; } list = list->next; } } } int main() { int i; for(i=1; i<=10; i++) insert(i); printf("Danh sach ban dau: \n"); display(list); split_list(); printf("\nDanh sach le: "); display(odd); printf("\nDanh sach chan: "); display(even); return 0; }
Biên dịch chương trình C trên sẽ cho kết quả:
Bài học Bài tập C phổ biến tại hoconline.club:
danh-sach-lien-ket-trong-c.jsp
Bài viết liên quan