- 1、本文档共11页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
嵌入式培训-班级成绩管理系统
设计课题一:班级成绩管理系统
顺序表方式程序:
#include stdio.h
#include stdbool.h
#include stdlib.h
//定义一个抽象类型datatype,它可以代表不同的具体的类型
struct student{
int sno[10];
char name[10];
float score[4];
};
typedef struct student datatype;
#define SIZE 10
//顺序表结构定义
struct seqlist{
datatype data[SIZE];
int last; //表示数组中最后一个数据的下标
};
extern struct seqlist* seqlist_init(void);
extern bool seqlist_insert(datatype tmp,struct seqlist * l);
extern bool seqlist_del(datatype tmp,struct seqlist * l);
extern bool seqlist_isempty(struct seqlist *l);
extern void seqlist_show(struct seqlist *l);
extern int seqlist_search(int key,struct seqlist * l);
extern void seqlist_sort(struct seqlist *l);
//1、顺序表的初始化 seqlist* seqlist_init
#include 1_seqlist.h
struct seqlist* seqlist_init(void)
{
struct seqlist * p;
//用malloc在堆中申请一块顺序表的空间
p = (struct seqlist*)malloc(sizeof(struct seqlist));
if(p == NULL){//malloc申请空间失败
printf(malloc failed!\n);
exit(-1); //结束程序,在程序的任何位置都可以调用该函数结束程序
}
p-last = -1;
return p;
}
//2、顺序表的插入 seqlist_insert
//#include 1_seqlist.h
bool seqlist_insert(datatype tmp,struct seqlist * l)
{
if(l-last == SIZE-1){ //顺序表满了
printf(seqlist is full!\n);
return false;
}else{
//l-last = l-last + 1;
l-last++;
l-data[l-last] = tmp;
return true;
}
}
//3、顺序表的删除 seqlist_del
//#include 1_seqlist.h
bool seqlist_del(datatype tmp,struct seqlist * l)
{
int i,j;
if(seqlist_isempty(l))
return false;
i = seqlist_search(tmp.sno,l);
if(i == -1){
printf(您要删除的数据不存在!\n);
return false;
}else{ //删除第i个位置的数据
for(j = i; j l-last; j++)
l-data[j] = l-data[j+1];
l-last--;
return true;
}
}
//4、判断顺序表是否为空 seqlist_isempty
//#include 1_seqlist.h
bool seqlist_isempty(struct seqlist *l)
{
if(-1 == l-last)
return true;
else
return false;
}
//5、预览顺序表中的每一条数据 seqlist_show
//#include 1_seqlist.h
void seqlist_show(struct seqlist *l)
{
int i;
for(i = 0; i = l-last; i++)
printf(%d %s %f\n,l-data[i].sno,l-data[i].name,l-dat
文档评论(0)