chinaunix网友2009-06-07 00:40:36
#include
#include
#define FALSE 0
#define TRUE 1
struct stu
{
char xh[12]; /*学号*/
char xm[12]; /*姓名*/
float sxcj; /*数学成绩*/
float cxsj; /*程序设计成绩*/
float zf; /*总分*/
struct stu *next; /*指向下条记录*/
struct stu *prev; /*指向上条记录*/
}STD;
struct stu *head=NULL; /*链表头指针,定义为全局变量*/
struct stu *tail=NULL; /*链表尾指针,定义为全局变量*/
struct stu *current=N