typedef struct Node//定义结构体类型 { ElemType data;//数据域 前面的ElemType 也是预定于好的类型 struct Node *next;//指向下一个节点的指针 } SLink;//定义别名