


下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、 迷宫问题课程设计 目 录 1问题描述.1 2需求分析 1 3概要设计 1 3.1抽象数据类型定义 1 3.2子程序及功能要求 1 3.3各程序模块之间的调用关系 2 4详细设计 2 4.1设计相应数据结构 2 4.2主要模块的算法描述 3 5测试分析 9 6课程设计总结 10 参考文献 10 附录(源程序清单) 10 1 问题描述 编制程序给出一条通过迷宫的路径或报告一个“无法通过”的信息。该迷宫是一个M行N列
2、的0-1矩阵,其中0表示无障碍,1表示有障碍。设入口为(1,1)出口为(M,N)每次移动只能从一个无障碍的单元移到其周围8个方向上任一无障碍的单元, 2 需求分析 该算法的基本思想是: (1) 若当前位置“可通”,则纳入路径,继续前进; (2)若当前位置“不可通”,则后退,换方向继续探索; (3)若四周“均无通路”,则将当前位置从路径中删除出去。 3 概要设计 3.1 抽象数据类型定义 typedef struct int x, y; /坐标 int dir; /方向 ElemType; typedef struct StackNode/构造栈 ElemType *base; ElemType
3、 *top; int stacksize; SqStack; 3.2 子程序及功能要求 (1)void Input(char bMM); (2)void Ouput(const char bMM); (3)int FindWay(char mazeMM); (4)int NextStep(int *x, int *y, int dir). 3.3 各程序模块之间的调用关系 主函数可调用子程序void Input(char bMM); void Ouput(const char bMM); int FindWay(char mazeMM); int
4、NextStep(int *x, int *y, int dir). 4 详细设计 4.1 设计相应数据结构 (1)迷宫类型定义 typedef struct int x, y; /坐标 int dir; /方向 ElemType; typedef struct StackNode/构造栈 ElemType *base; ElemType *top; int stacksize; SqStack; (2)栈元素类型定义 int InitStack(SqStack *S) /初始化栈 S-base=(ElemType*) malloc(STACK_INIT_SIZE*sizeof(ElemTyp
5、e); if(!S-base) printf("memory allocation failed,goodbye"); exit(1); S-top=S-base; S-stacksize=STACK_INIT_SIZE; return OK; 4.2 主要模块的算法描述 #include #include #define M 10 /自己规定为10*10的迷宫 #define OK 1 #define ERROR 0 #define OVERFLOW -1 #define STACK_INIT_SIZE 100 #define
6、 STACKINCREMENT 10 int findway(int); int NextStep(int *, int *, int ); typedef struct int x, y; /坐标 int dir; /方向 ElemType; typedef struct StackNode/构造栈 ElemType *base; ElemType *top; int stacksize; SqStack; int InitStack(SqStack *S) /初始化栈 S-base=(ElemType*) malloc(STACK_INIT_SIZE*sizeof(ElemType); i
7、f(!S-base) printf("memory allocation failed,goodbye"); exit(1); S-top=S-base; S-stacksize=STACK_INIT_SIZE; return OK; int Push(SqStack *S,ElemType e) /进栈操作 if(S-top-S-base=S-stacksize) S-base=(ElemType*) realloc(S-base,(S-stacksize+STACKINCREMENT)*sizeof(Eleme); if (!S-base) printf("m
8、emory allocation failed,goodbye"); exit(1); S-top = S-base+S-stacksize; S-stacksize += STACKINCREMENT; *S-top+=e; return OK; int Pop(SqStack *S,ElemType *e) /出栈操作 if(S-top=S-base) return ERROR; *e=*-S-top; printf("%dn",e); return OK; int StackEmpty(SqStack *S) /判断栈是否为空 if(S-top=S-base
9、) return OK; else return ERROR; void Input(char bMM) /输入时候请注意把一圈都输入为墙即'#' int i, j; printf("qingshuirumigongxingzhuang:n"); for (i = 0; i #include #define M 10 /自己规定为10*10的迷宫 #define OK 1 #define ERROR 0 #define OVERFLOW -1 #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 int
10、findway(int); int NextStep(int *, int *, int ); typedef struct int x, y; /坐标 int dir; /方向 ElemType; typedef struct StackNode/构造栈 ElemType *base; ElemType *top; int stacksize; SqStack; int InitStack(SqStack *S) /初始化栈 S-base=(ElemType*) malloc(STACK_INIT_SIZE*sizeof(ElemType); if(!S-base) printf("
11、;memory allocation failed,goodbye"); exit(1); S-top=S-base; S-stacksize=STACK_INIT_SIZE; return OK; int Push(SqStack *S,ElemType e) /进栈操作 if(S-top-S-base=S-stacksize) S-base=(ElemType*) realloc(S-base,(S-stacksize+STACKINCREMENT)*sizeof(Eleme); if (!S-base) printf("memory allocation failed
12、,goodbye"); exit(1); S-top = S-base+S-stacksize; S-stacksize += STACKINCREMENT; *S-top+=e; return OK; int Pop(SqStack *S,ElemType *e) /出栈操作 if(S-top=S-base) return ERROR; *e=*-S-top; printf("%dn",e); return OK; int StackEmpty(SqStack *S) /判断栈是否为空 if(S-top=S-base) return OK; else retur
13、n ERROR; void Input(char bMM) /输入时候请注意把一圈都输入为墙即'#' int i, j; printf("qingshuirumigongxingzhuang:n"); for (i = 0; i < M; i+) for (j = 0; j < M; j+) scanf("%c",&bij); getchar();/吃掉内存中的残留换行符号 void Ouput(const char bMM) int i, j; printf("migongxingzhuangwei:n&q
14、uot;); for (i = 0; i < M; i+) for (j = 0; j < M; j+) printf("%c",bij); printf("n"); int FindWay(char mazeMM) ElemType e; int constep = 1; int x = 1, y = 1; SqStack S; InitStack(&S); do if (mazexy = ' ') /当第3次时 mazexy!=' ' 照样通不过 mazexy = '1' e.x =
15、 x; e.y = y; e.dir = 1; Push(&S,e); if (x = M-2 && y = M-2) printf("cunzaichukoun"); return 1; NextStep(&x,&y,1); constep+; else Pop(&S,&e); while (e.dir = 4 && !StackEmpty(&S) mazee.xe.y = '0' Pop(&S,&e); if (e.dir < 4) e.dir+; Push(&S,e); x = e.x; y = e.y; NextStep(&x, &y, e.dir); else printf("meiyouchukoun"); return 0; while(S.top!=S.base); return 0; int NextStep(int *x, in
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 公司班组户外活动方案
- 公司立flag活动方案
- 公司清明工会活动方案
- 公司活动中心策划方案
- 公司猜盲盒活动方案
- 公司组织跑步活动方案
- 公司新年服装定制活动方案
- 公司服装大赛活动方案
- 公司组内活动策划方案
- 2025年运动医学与运动训练课程考试试题及答案
- 2025年湖南省普通高中学业水平考试合格性考试模拟试题(长郡版高一生物)(原卷版)
- 2025春国家开放大学《思想道德与法治》终考大作业答案
- 2025年广东省广州市白云区中考语文二模试卷
- 【英语(新高考Ⅰ卷)】2025年普通高等学校招生全国统一考试
- 2025年天津市河西区中考二模数学试题(含部分答案)
- 医院培训课件:《药品不良反应报告和监测工作简介》
- 广东省东莞市2025届九年级下学期中考三模语文试卷(含答案)
- 2025 届九年级初三毕业典礼校长讲话:星河长明共赴新程
- 2025年生态文明建设的考核试卷及答案
- GM/T 0009-2023SM2密码算法使用规范
- 高效能人士七个习惯之一积极主动
评论
0/150
提交评论