创建带头结点的单链表出现的错误can not convert 'LNode*'to 'LinkNode*' in assignment
结构体定义的问题,修改为:typedef struct LNode{ElemType data;struct LNode* next;}LinkNode;