笔试题小练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(
相关文章
相关标签/搜索