以下代码是一个链表的逆置操作代码,供参考#include<stdio.h>#include <stdlib.h>struct node { int n; //结点中的数据 struct node *next ; //指向后继结点的指针} *list=NULL; //表头,初值NULL,表示空表void createList() //建立链表{ struct node *p; //临时结点指针 in...