struct node { int data; struct node* next; }; 创建单链表的程序为: struct node* create(unsigned int n) { //创建长...