“头结点是头指针指向的结点, 首结点是头结点指向的下一个结点。头结点无数据域,首结点有数据域。 头结点(通常无数据域) ** 学习链表首先会创建吧: ** 有头结点 List Read() { struct Node *p=(struct Node*)malloc(sizeof(struct Node)),*head=p; int n; scanf("%d",&n); for(int i=0;i<n;i++) { p->Next=(struct Node*)malloc(sizeof(struct Node)); ...