线性表的链式存储,下面这段代码
typedef struct Node{ ElemType e; struct Node *next; }Node,*LinkList;
LinkList p和Node p有什么区别
九州编程
慕雪6442864
相关分类