有点不明白链表里面的
struct node *head=(struct node*)malloc(sizeof(struct node));
struct node *ptail;
head=ptail;
这个是什么意思,让ptail指向head节点吗?
struct node *head=(struct node*)malloc(sizeof(struct node));
struct node *ptail=(struct node*)malloc(sizeof(struct node));
head=ptail;
那么这个又是什么意思呢?
还有 struct node *head=(struct node*)malloc(sizeof(struct node));
struct node *ptail;
*pnew=(struct node*)malloc(sizeof(struct node));
head=ptail;
ptail->next=pnew
相当于head->next=pnew吗?
qq_慕圣9438953
相关分类