筆試題小練2(鏈表)

一、 /*編寫代碼,移除未排序鏈表中的重複結點*/ #include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct node { int data; struct node *next; }Link; typedef Link* linken; linken head; void insert_tail(
相關文章
相關標籤/搜索