资源简介

使用VC 6.0编译器

资源截图

代码片段和文件信息

#include  
#include  
#include  
#include  
#include  
#include  
#include  
#include  
#include  

#define LEN sizeof(struct student) 
using namespace std; 
int n=0; //定义一个全局变量统计学生人数 
struct student//定义一个学生信息的结构体 

char name[20]; //用来存放姓名的 
char sex[20]; //用来存放性别的 
char yuanxi[20];//用来存放院系的 
long int id; //用来存放学号的 
int score[4]; //用来存放分数的 
int total; //用来存放总分数的 
struct student *next;  
}; 
vector  stu; 
class Information  

public: 
Information() ; //构造函数. 
~Information() ; //析构函数. 
student *creat();//建立链表函数。 
void output(student *head); 
int count(student *head);//定义函数count()统计考生总数  
student *insert(student*head);//指针函数*insert()用来添加考生信息. 
student *cancel(student *headlong int num);//指针函数*cancel()用来删除考生信息. 
student *find(student *headlong int num); //指针函数*find()用来查找考生信息. 
void inorder(student *head);//定义inorder()函数将考生的总分从大到小排列并输出 

评论

共有 条评论