搜索资源列表
随机迷宫解
- 输入任意大小的矩阵阶数n,程序将自动产生一个随机矩阵迷宫。本程序可以迅速的找到所有可能的路径,并显示之。代码中故意限制只显示最多30条路径。-arbitrary size of the input matrix order n, the program will automatically generate a random matrix maze. This program can quickly find all possible paths, and Displays. Code inte
maze
- 包含了大部分的迷宫操作 应该是很全面的 不足请提意见
mazebestpath
- 迷宫最短路径问题,采用递归算法实现,C语言学习者的经典题目-Maze shortest path problem, the use of recursive algorithm
hhh
- 用回溯法链表求解迷宫问题,并加上完整的人物演示过程-With backtracking maze solving the problem list, with a complete demonstration of the process of character
MG_Console
- C 语言 VC6.0编译 迷宫演示控制台程序-C language compiler VC6.0 maze demo console application
maze
- It s one simple version of famousgame "Maze".
lostgame
- 实现了让其自动走出迷宫的任务,记录走出的步骤-Allowed to achieve the task automatically out of the maze to record the steps out
MAZE
- 迷宫 数据结构 大家好 大家好 大家好 -Maze data structure Hello everybody Hello everybody Hello everybody Hello everybody Hello everybody Hello everybody
maze
- 这是一个迷宫算法 利用栈的性质 而且还有界面演示 主要是练习动态链接库-This is a maze algorithm uses the stack but also the nature of the interface is mainly practice demonstrates the dynamic link library
Maze
- 实现迷宫算法,已知入口点和出口点,输出从入口到出口的一条路径-Maze algorithm, known point of entry and exit points, the output of a path from entrance to exit
maze
- 从文件中,读入迷宫,动态生成100*100以下的迷宫,找到其中一条路径。-From the file, read into the maze, dynamically generated maze, find the path of one of the following 100* 100.
OpenCV-Maze-generation
- 用OpenCV库中的窗口创建函数和图像处理函数编写的迷宫的生成与行走小游戏-Window created in the OpenCV library functions and image processing functions written in the maze generation and walk of game
Maze
- 迷宫算法.简易的二维迷宫.演示找到一条从起点到终点找到的路径.-Maze algorithm . This Program is a simple two-dimensional maze algorithm. Presentation to find a path found from start to finish.
maze
- 一个简单的控制台程序,能自动创建迷宫,具有迷宫的基本功能,能够自动寻径,找到迷宫的出口,并打出路径。-A simple console program can automatically create a maze, with the basic functions of the maze, can automatically routing find maze export, and hit the path.
maze
- C++迷宫问题求解,随机生成迷宫存放于二维数组,为保证至少有一条通路,再生成一条路径置入迷宫中,然后回溯法求解-C++ maze problem solving randomly generated maze stored in a two-dimensional array, in order to ensure at least one path, and then generate a path into your maze, then backtracking to solve
Maze
- 迷宫问题,可视化,包括迷宫的生成,然后程序自动的找出迷宫的路径-Maze problem, visualization, including the generation of the maze, and then the program automatically find the path of the maze
maze
- 完成迷宫程序的设计 输入 从maze.txt文件读入迷宫,格式如下 其中第一行为迷宫的阶数N,接下来是一个N*N的矩阵代表迷宫,0为路径,1为障碍物。 实验要求 要求自学查询技术文档,利用STL 的stack 类,完成以下要求的功能: 1. 打印迷宫: DisplayMaze()或者重载<< 其中(1,0)位置和(N-2,N-1)位置打印“=>,其余的1的位置打印“##”,0的位置打印“ ”(两 个空格),注意每个位置都是两个字符。 打印示例
maze
- 本代码实现的是一个简单迷宫问题。以一个m*n的长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,豁得出没有同路的结论。 基本要求为: 首先实现一个以链表做存储结构的栈类型,然后编写一个求解迷宫的非递归程序,求得的通路一三元组(i,j,d)的形式输出,其中:(i,i)指示迷宫中的一个坐标,d表示走到下一坐标的方向。-The implementation of the code is a simple maze. A m* n t
maze
- 随机画出迷宫,输入起点终点,寻找迷宫路径-Random draw maze, enter starting and ending points, find the maze path
The-maze-problem
- C++源码,控制台实现数据结构中的迷宫问题,可给出所有路径的路径图,路径总数和最短路径图-Using VC++ to realize the maze problem.It can figure out all paths and the shortest path.