搜索资源列表
求解迷宫问题
- 运用C语言实现寻找输入的“迷宫”矩阵中的可选路径,并将找到的最短路径显示出来。-use C language to find that the "maze" matrix optional path and find the shortest path displayed.
趣味程序导学C语言
- 趣味程序导学C语言.详细介绍了迷宫探索和搬运工游戏,配有ppt,说明生动,解释明晰-interesting procedures C Language Learning Guide. Details of the exploration and porters maze games, equipped with ppt illustrate vivid, lucid explanation
迷宫实现
- C语言迷宫不是原创-It s One kind of maze arithmetic ,but it s not my authorship.
C语言实战105例
- C语言实战105例 第1部分 基础篇 实例1 一个价值“三天”的BUG 2 实例2 灵活使用递增(递减)操作符 5 实例3 算术运算符计算器 7 实例4 逻辑运算符计算器 9 实例5 IP地址解析 11 实例6 用if…else语句解决奖金发放问题 13 实例7 用for循环模拟自由落体 16 实例8 用while语句求n! 19 实例9 模拟银行常用打印程序 22 实例10 使用一维数组统计选票 26 实例11 使用二维数组统计学生成绩 29 实例12 简单的计算器
迷宫C++算法
- 迷宫算法,C++语言,可自动随机产生,也可手动输入
迷宫 数据结构(C语言版)关于栈与队列
- 迷宫 数据结构(C语言版)关于栈与队列,求迷宫从入口到出口的所有路径,Maze data structure (C language version) on the stack and queue, and the maze from the entrance to the export of all path
MazePath_v4.0
- C语言 使用SDL 实现的迷宫求解演示程序。 使用栈,回溯法 包括制作地图,随机生成地图,求解过程演示。-C language realization of the use of SDL demo program to solve the maze. The use of stacks, including the production of backtracking map, randomly generated maps, the solution process demonstra
migong
- 数据结构课程设计报告及代码 C语言环境 迷宫问题的设计 -Data structure curriculum design reports and code C language environment maze design issues
xyz
- C语言课程设计集合 案例一 贪吃蛇游戏 案例二 计算器 案例三 黑白棋游戏 案例四 迷宫问题 案例五 扫地雷游戏 案例六 速算24 案例七 数据结构CAI系统 案例八 进程调度 案例九 存储管理分区分配算法 案例十 通讯录 案例十一 学生成绩管理 案例十二 工资管理 案例十三 图书借阅管理 案例十四 教师工作量计算 -C language curriculum design a collection of case calculator
pbAo2lrU
- C语言课程设计案例精编。 有十四个编程的课程设计案例:贪吃蛇游戏,计算器,黑白棋游戏,迷宫问题,扫地雷游戏,速算24和进程调度等。-There are 14 programming cases for students to practice in this e-book.
C-MIGONG
- C语言迷宫游戏,提供源代码,可以供读者参考和学习 -C language maze game
迷宫.正确版
- 利用C语言编写的迷宫程序,程序中提前已写入迷宫障碍设置,运行程序后,若有路可走,则自动生成可行路线;否则,提示无路可走。(Program white in learning the data structure, try to write the maze problem, if you have any questions, please correct me.)
代码
- 一些简单的C语言代码,包括数组迷宫、进制转换等(Some simple C language code)
迷宫
- 一个走迷宫的C语言游戏(小白,大神勿喷)。(A maze of C language games.)
纯c语言迷宫源码
- 这是一款非常好玩的游戏,欢迎来玩。这是c语言所写(This is a very good game ,welcome to play.)
迷宫
- 使用C++语言,在windows环境下实现一个简单的迷宫程序(To achieve a simple maze procedures)
用C语言编写游戏 迷宫问题
- 用c语言代码编写的游戏“迷宫问题”,大家可以下载来看看,多交流(C language code written in the game "maze problem", you can download to see, more exchanges)
走迷宫
- 用C语言写的一个走迷宫小游戏,开局可以初始化地图,生成一个随机地图并可以自己调节地图的大小(A maze game written in the C language)
迷宫
- 运用矩阵来表示迷宫。能根据用户指定的维数自动生成迷宫,并打印迷宫中各个位置的状态。在A 的基础上实现迷宫的自动路径搜索,判断是否存在从起点到终点的通路。(The maze is represented by a matrix. The maze can be generated automatically according to the dimension specified by users, and the status of each location in maze can be pr
迷宫问题
- 用C++语言实现在迷宫中寻找出路。 核心算法伪代码: do{ 如果当前位置为出口: 当前位置进栈; return 1; while(尝试的方向小于4) { 尝试方向号码对应方向的格子; 如果这个格子是没走过的通路: 当前位置进栈; 将地图上的这个位置标记为走过的; 切换试探的方块为新的当前位置; 跳出这层循环; 否则: 方向号码增加1; } 如果当前位置的四周没有路了: 地图上的当前位置标记成走过的; 出栈; }while(栈不空或者还有方向没试探完);(Using C + + l