{ int nDate;struct node *pstnext;}Node;//链表输出 void output(Node *head){ Node *p = head->pstnext;while(NULL != p){ printf("%d ", p->nDate);p = p->pstnext;} printf("\r\n");} //链表建立 Node* creat(){ Node *head = NULL, *p = NULL, *s = NULL;int ...