#include <stdio.h>
#include <malloc.h>
struct students * create(int n);//链表的建立
void print(struct students *head);//链表的输出
struct students * del(struct students *head,int num);
struct students
{
char name[20];
int number;
int sco;
struct students *next;
};
......................
阅读全部 | 2012年1月6日 05:57