创建结构体:struct Node{ int date; struct Node*next; };创建表头:struct Node*creatlist(){ struct Node*headNode; headNode=(struct Node*)malloc(sizeof(struct Node)); headNode->date=123; ...