数据结构单链表
#include <stdio.h>#include <stdlib.h>typedef int T;typedef struct node{T Element;struct node*Link;}N