数据结构单链表

#include <stdio.h>#include <stdlib.h>typedef int T;typedef struct node{T Element;struct node*Link;}N

腾讯文库数据结构单链表