#include <stdio.h> #include <stdlib.h> //定义节点; typedef struct node { int data; struct node* next; }node; //创建节点; node* create(int data) { node* newnode=(node*)malloc(sizeof(node)); if(newnode==NULL) exit(-1); newnode->data=data; newnode->next=NULL; retur...