1104 [填空题]链表的倒序
时间限制:1000MS 内存限制:65536K
提交次数:2326 通过次数:1641
题型: 填空题 语言: 无限制
Description
下面程序,先创建一个链表,然后调用reverse函数,将链表中各结点变为倒序排列。请完成reverse函数,
#include "stdio.h"
#include "malloc.h"
#define LEN sizeof(struct student)
struct student
{
long num;
int score;
struct student *