3 Star 56 Fork 1

weh_coder/student_manage_system

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
list.h 709 Bytes
一键复制 编辑 原始数据 按行查看 历史
weh 提交于 2021-10-09 23:28 . 学生管理系统代码
#ifndef _LIST_H_
#define _LIST_H_
struct Student{
int class_num; //班级
char id[15]; //学号
char name[10]; //姓名
float score[3]; //各科分数
float sum; //总成绩
float course_av[3]; //各科平均分
float course_pass[3];//各科及格率
float course_max[3];//各科最低分
float course_min[3];//各科最高分
};
struct Node{
struct Student student;
struct Node *next;
};
struct List{
struct Node *head;
int size;
};
struct List* createList();
void destoryList(struct List *list);
struct Node* createNode(struct Student student);
struct Node* getLastNode(struct List *list);
struct Node* getBeforeNode(struct List *list,struct Student student);
void addList(struct List *list, struct Node *node);
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/weh_coder/student_manage_system.git
[email protected]:weh_coder/student_manage_system.git
weh_coder
student_manage_system
student_manage_system
master

搜索帮助