typedef struct LNode //定义单链表结点类型{ElemType data;struct LNode *next;} LinkList;请问LNode是什么LinkList又是什么,他们两有什么区别求详细深入的解释 查看完整描述