c語言 將兩個單項鍊表合併且刪除重複元素(9)

代碼實現: #include<stdio.h> #include<stdlib.h> //將l2合併到l1中. 同時l1 l2中都有的元素,就不再歸併到l1中 //又是鏈表合併 只不過合併的時候刪除相同的元素~ typedef struct node { int data; struct node * next; }Node; typedef struct list { Node*
相關文章
相關標籤/搜索