二、以下是用C语言实现单链表反转的代码: ```c#include #include /* 定义单链表节点结构体 */typedef struct node { int data; struct node *next;} Node; /* 创建单链表 */Node* createList(int n) { Node *head = NULL, *p = NULL, *q = NULL; int i, x; for (i = 1; i <= n; i+...