这是我们学校安排的课作业 我选了个难的 现在后悔死了 没法子 请教高位高手 HELP ME!!
编写程序,实现动态链表的插入、删除、输出、查找、统计以及销毁功能。
动态链表的每个节点存储一名学生的信息,包括:学号、姓名、性别、年龄、三门功课(数学、物理、化学)的成绩、三门功课的平均分以及家庭住址。
学生结构体的定义如下:
enum gender {male,female};
struct STUDENT
{
long num;
char name[10];
enum gender sex;
int age;
int score[3];
float avg;
char addr[20];
struct STUDENT *next;
};
课程设计要求:
⑴一律使用 STUDENT 定义学生结构体的变量和定义指向学生结构体的指针变量
⑵程序运行过程中要有菜单提示,菜单如下:
**********************************************
* 1.Insert a student *
* 2.Delete a student *
* 3.Display the link list *
* 4.Display excellent students *
* 5.Search a student by the name *
* 6.Display the average score of three courses *
* 0.Exit the program *
**********************************************
⑶“Insert a student”:插入一个学生记录,要求按平均分从高到低插入
⑷“Delete a student”:删除指定学号的学生
⑸“Display the link list”:输出链表中所有学生的信息
⑹“Display excellent students”:输出链表中三门功课平均成绩高于85分(含85分)的学生
⑺“Search a student by the name”:根据输入的姓名,输出链表中相应学生的信息
⑻“Display the average score of three courses”:输出链表中所有学生的数学平均分、物理平均分以及化学平均分
⑼“Exit the program”:销毁链表,结束程序运行
看了半天纯粹不懂 不知道如何下爪子,插入一个学生记录,要求按平均分从高到低插入...不知道该如何插入,一般来判断分数的高低 用数组来整,可只是处理一些小问题 这次我彻底载了
恳请个位高手帮忙指导一下 插入一个学生记录,要求按平均分从高到低插入 怎么整 谢谢拉
如何插入一个学生记录,要求按平均分从高到低插入(动态链表)