搜索资源列表
迷宫问题
- 解决迷宫问题(用c实现)-maze solve the problem (with c realization)
migong-c
- 迷宫算法!通过递归算法实现!找到最优路径,完成迷宫出口的查找!-maze algorithm! Through recursive algorithm! To find the optimal path to complete the maze exports to search!
求解迷宫问题
- 运用C语言实现寻找输入的“迷宫”矩阵中的可选路径,并将找到的最短路径显示出来。-use C language to find that the "maze" matrix optional path and find the shortest path displayed.
c++buildermaze
- 用C++BUILDER做的一个迷宫,可以实现深度优先,广度优先和启发式搜索算法-C BUILDER do a maze, can achieve priority depth, breadth priority and heuristic search algorithm
digui&migong
- 用c++实现的数据结中的递归运算的原代码,包括迷宫问题
CMousemaze
- 一个用C++实现的迷宫程序,可以自己画迷宫,计算出最短路径,并显示。-C achieve a maze of procedures, can you paint the labyrinth, calculate the shortest path, and displayed.
Maze
- 人工智能中的经典的迷宫算法,是否有通路走出maze,C++实现
migong
- 用栈实现的迷宫算法,c++实现,编程者入门必经之路
migong
- 我学习C语言时的课题之一,实现 迷宫系统
迷宫END
- 利用C语言实现迷宫算法。 利用随机函数生成迷宫,并显示所有路径!-use C language maze algorithm. Using random function generator maze, and that all paths!
migong
- 利用栈结构实现迷宫求解问题。迷宫求解问题如下: 心理学家把一只老鼠从一个无顶盖的大盒子的入口赶进迷宫,迷宫中设置很多隔壁, 对前进方向形成了多处障碍,心理学家在迷宫的唯一出口放置了一块奶酪,吸引老鼠在迷宫中寻找通路以到达出口。-Achieved using a stack maze to solve the problem structure. Maze solving the problem as follows: psychologist to a mouse from a big b
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语言基本数据结构实现的迷宫的一个算法 -Using C language basic data structure of a maze algorithm
0
- 迷宫C++实现迷宫算法 希望对你有所帮助 主要通过分模块应用讲解 -Maze maze algorithm C++, you want to help to explain, mainly through sub-module application
Maze
- 使用C++实现迷宫,文件里有具体的算法分析。-Use C++, maze, file a specific algorithm analysis.
maze-Examples
- c++实现 迷宫求解问题 数据结构 算法 利用数组实现-c++ data structures to achieve the maze solving algorithm uses an array of issues to achieve
c++代码实现走迷宫
- 利于c++完成对迷宫的编程设计,运行后成功走出迷宫(It is helpful for c + + to complete the programming of the maze, and then successfully get out of the maze)
migong
- 这是在C语言环境下实现迷宫数组自动寻迹的程序(This is in the C language environment, the realization of the maze array automatically tracing procedures)
数据结构——走迷宫
- 走迷宫算法的C++实现,可直接运行可执行文件 不需要重新编译(Maze algorithm C++ implementation, can run directly executable files do not need to re compile.)
迷宫问题
- 用C++语言实现在迷宫中寻找出路。 核心算法伪代码: do{ 如果当前位置为出口: 当前位置进栈; return 1; while(尝试的方向小于4) { 尝试方向号码对应方向的格子; 如果这个格子是没走过的通路: 当前位置进栈; 将地图上的这个位置标记为走过的; 切换试探的方块为新的当前位置; 跳出这层循环; 否则: 方向号码增加1; } 如果当前位置的四周没有路了: 地图上的当前位置标记成走过的; 出栈; }while(栈不空或者还有方向没试探完);(Using C + + l