搜索资源列表
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++实现的数据结中的递归运算的原代码,包括迷宫问题
migong
- 用栈实现的迷宫算法,c++实现,编程者入门必经之路
迷宫END
- 利用C语言实现迷宫算法。 利用随机函数生成迷宫,并显示所有路径!-use C language maze algorithm. Using random function generator maze, and that all paths!
OSet
- 迷宫程序,C++实现 一个用VC写的关于迷宫的程序-maze procedure, C to achieve a VC was on the maze procedure
c++迷宫问题
- 这是我个人做的在vc环境下的迷宫问题的实现。各位可以参考或指教!-This is my personal vc done in the context of the realization of the maze. You can reference or enlighten!
数据结构的C++描述
- 目 录 译者序 前言 第一部分 预备知识 第1章 C++程序设计 1 1.1 引言 1 1.2 函数与参数 2 1.2.1 传值参数 2 1.2.2 模板函数 3 1.2.3 引用参数 3 1.2.4 常量引用参数 4 1.2.5 返回值 4 1.2.6 递归函数 5 1.3 动态存储分配
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
Maze
- 本代码在IAR编译环境下编译,实现电脑鼠走迷宫,能够准确的到达终点-This code compiled under IAR compiler to achieve the computer mouse maze, can accurately reach the end
maze
- 这是经典迷宫问题,本代码是用C语言实现的-This is the classic maze problem, the code is achieved using C language
MIGONG
- 用C语言基本数据结构实现的迷宫的一个算法 -Using C language basic data structure of a maze algorithm
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