数据结构之教学计划编制问题.doc
《数据结构之教学计划编制问题.doc》由会员分享,可在线阅读,更多相关《数据结构之教学计划编制问题.doc(25页珍藏版)》请在沃文网上搜索。
1、课程设计说明书题目: 教学计划编制问题(A类) 院 系: 计算机科学系 专业班级: 06网络工程 学 号: 学生姓名: 指导教师: 一. 需求分析(1)实验内容和实验目的:1.大学的每个专业都要编制教学计划。假设任何专业都有固定的学习年限,每学年含两学期,每学期的时间长度和学分上限都相等。每个专业开设的课程都是确定的,而且课程的开设时间的安排必须满足先修关系。每个课程的先修关系都是确定的,可以有任意多门,也可以没有。每一门课程恰好一个学期。试在这样的情况下设置一个教学计划编制程序。2.在大学的某个专业中选取几个课程作为顶点,通过各门课的先修关系来构建个图,该图用邻接表来存储,邻接表的头结点存储
2、每门课的信息.3.本程序的目的是为用户编排课程,根据用户输入的信息来编排出每学期要学的课程.(2)测试数据:学期总数:6;学分上限:10;该专业共开设12门课,课程号从01到12,学分顺序为2,3,4,3,2,3,4,4,7,5,2,3。先修关系见教科书图726。(3)测试结果(包含正确和错误的):正确测试结果:错误测试结果:二. 概要设计1. 抽象数据类型图的定义如下: ADT Graph数据对象V:V是具有相同特性的数据元素的集合,称为顶点集.数据关系R: R=VR VR=(v,w)|v,wV,(v,w)表示v和w之间存在直接先修关系基本操作P:void CreatGraph(ALGrap
3、h *);void FindInDegree(ALGraph , int * );void TopologicalSort_1(ALGraph G,int numterm,int maxcredit);void TopologicalSort_2(ALGraph G,int numterm,int maxcredit);ADT Graph栈的定义:ADT Stack数据对象:D=ai|aiElemSet,i=1,2,n,n=0 数据关系:R1=ai-1 ai|ai-1,aiD,i=2,n基本操作:void InitStack (SqStack *S);int StackEmpty(SqStac
4、k S);void Push(SqStack *S, int );int Pop(SqStack *S, int *e);ADT Stack2. 主程序 int main() /主函数 int numterm; /学期总数 int uplcredit; /一个学期的学分上限 int selectway; ALGraph G; printf(请输入学期总数:n); scanf(%d,&numterm); printf(请输入一个学期的学分上限:n); scanf(%d,&uplcredit); CreatGraph(&G); printf(请选择编排策略:1.课程尽可能集中到前几个学期;2.课程
5、尽量均匀分布n);scanf(%d,&selectway); if(selectway=1) TopologicalSort_1(G,numterm,uplcredit); if(selectway=2) TopologicalSort_2(G,numterm,uplcredit); system(pause); return 0;3. 本程序只有两个模块,调用关系简单. 主程序模块 拓扑排序模块三详细设计1头结点,表结点,邻接表的定义#define MAX_VERTEX_NUM 100 /最大课程总数typedef struct ArcNode int adjvex; struct ArcN
6、ode *nextarc; ArcNode;typedef struct VNode char name24; /课程名 int classid; /课程号 int credit; /课程的学分 int indegree; /该结点的入度 int state; /该节点的状态 ArcNode *firstarc; /指向第一条依附该顶点的弧的指针 VNode,AdjListMAX_VEXTEX_NUM;typedef struct AdjList vertices; int vexnum, arcnum; ALGraph;邻接表的基本操作:void CreatGraph(ALGraph *);
7、创建邻接表void FindInDegree(ALGraph , int * );求一个结点的入度void TopologicalSort_1(ALGraph G,int numterm,int maxcredit);拓扑排序来编排课程void TopologicalSort_2(ALGraph G,int numterm,int maxcredit);拓扑排序来编排课程2栈的定义:#define STACk_INIT_SIZE 100 /存储空间的初时分配量#define STACKINCREMENT 10 /存储空间的分配增量typedef int ElemType;typedef str
8、uct AdjList vertices; int vexnum, arcnum; ALGraph;基本操作:void InitStack (SqStack *S);栈的初始化int StackEmpty(SqStack S);判断栈是否为空void Push(SqStack *S, int );入栈操作int Pop(SqStack *S, int *e);出栈操作3主程序和其他算法int main() /主函数 int numterm; /学期总数 int uplcredit; /一个学期的学分上限 int selectway; ALGraph G; printf(请输入学期总数:n);
9、scanf(%d,&numterm); printf(请输入一个学期的学分上限:n); scanf(%d,&uplcredit);CreatGraph(&G);printf(请选择编排策略:1.课程尽可能集中到前几个学期;2.课程尽量均匀分布n); scanf(%d,&selectway); if(selectway=1) TopologicalSort_1(G,numterm,uplcredit); if(selectway=2) TopologicalSort_2(G,numterm,uplcredit); system(pause); return 0;void CreatGraph(A
10、LGraph *G)/构件图int i, m, n; ArcNode *p; printf(请输入需要编排课程总数:n); scanf(%d,&G-vexnum); for( i=1;ivexnum;i+) printf(请输入课程名n); scanf(%s,&G-verticesi.name); printf(请输入课程号n); scanf(%d,&G-verticesi.classid); printf(请输入该课程的学分n); scanf(%d,&G-verticesi.credit); G-verticesi.indegree=0; G-vertices i.state=NOTSTUD
11、Y; G-verticesi.firstarc=NULL; printf(请输入课程先修关系总数:); scanf(%d,&G-arcnum); printf(请顺序输入每个课程先修关系(先修课程在前并以逗号作为间隔):n); for (i = 1; i arcnum; i+) printf(n请输入存在先修关系的两个课程的序号:); scanf(%d,%d,&n,&m); while (n G-vexnum | m G-vexnum) printf(输入的顶点序号不正确 请重新输入:); scanf(%d,%d,&n,&m); p = (ArcNode*)malloc(sizeof(ArcN
12、ode); if (p = NULL) printf(memory allocation failed,goodbey); exit(1); p-adjvex = m; p-nextarc = G-verticesn.firstarc; G-verticesn.firstarc = p; printf(n建立的邻接表为:n); /输出建立好的邻接表 for(i=1;ivexnum;i+) printf(%d:-,G-verticesi.classid); for(p=G-verticesi.firstarc;p!=NULL;p=p-nextarc) printf(%d-,p-adjvex);
13、printf(NULL); printf(n); void InitStack(SqStack *S) S-base=(int *)malloc(STACK_INIT_SIZE *sizeof(int); if (!S-base) printf(ERROR); exit(1); S-top=S-base; S-stacksize=STACK_INIT_SIZE;int StackEmpty(SqStack *S) if(S-top=S-base) return OK; else return ERROR;void Push(SqStack *S,int e) if(S-top - S-base
14、 = S-stacksize) S-base = (int *) realloc (S-base , (S-stacksize + STACKINCREMENT) * sizeof(int); if(!S-base) printf(ERROR); exit(1); S-top = S-base + S-stacksize; S-stacksize += STACKINCREMENT; *S-top+ = e;int Pop(SqStack *S, int *e) if(S-top = S-base) exit(1); *e = * -S-top; return 0;void FindInDeg
- 1.请仔细阅读文档,确保文档完整性,对于不预览、不比对内容而直接下载带来的问题本站不予受理。
- 2.下载的文档,不会出现我们的网址水印。
- 3、该文档所得收入(下载+内容+预览)归上传者、原创作者;如果您是本文档原作者,请点此认领!既往收益都归您。
下载文档到电脑,查找使用更方便
20 积分
下载 | 加入VIP,下载更划算! |
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 数据结构 教学计划 编制 问题