typedef struct LNode//单链表的存储结构 { ElemType data; struct LNode *next; }LNode,*LinkList;