搜索资源列表
labyrinth
- 本程序的功能是找出指定迷宫的路径,包括了递归和非递归算法。-This procedure is to find out the designated functions of the labyrinth path, including the recursive and non-recursive algorithm.
MG
- 在一个二维数组组成的迷宫中从指定的起点通过递归算法找到指定的出口(以图形界面表示)-In a maze consisting of two-dimensional array from the specified starting point in the recursive algorithm to find the adoption of the designated export (to a graphical interface that)
migong
- VC实现迷宫问题,用穷举法找出一条路径,用递归形式的算法求得迷宫中所有可能的通路,以方阵形式输出迷宫及其通路. -VC to achieve maze problems,and use brute-force method to find a path,using the recursive form of algorithm to seek all possible paths in the maze in order to form the output matrix and the
Maze
- 迷宫问题 非递归算法 自动生成m*n矩阵,1表示不通,0表示通行-Maze problem of non-recursive algorithms automatically generate m* n matrix, 1 is blocked, passage 0
famousalgorithmcollection
- <经典算法合集>其中包括: 最小生成树 MD5加密 LZW压缩 josephus 乘法表 积分 枚举 基数转换 矩阵问题举例 求解质数 圆周率的求法 改进的快速排序法 几种插入排序法 水仙花数 迷宫生成器 生命游戏 递归 回溯 贪心 动态规划 排序算法-" Classical algorithm Collection> These include:
Maze-solution
- 迷宫求解 *问题描述:可以输入一个任意大小的迷i宫数据,用非递归的方法求出一条走出迷宫的路径,并将路径输出; *要求: 在上交资料中请写明:存储结构、基本算法(可以使用程序流程图)、源程序、测试数据和结果、算法的时间复杂度、另外可以提出算法的改进方法;-Maze solution * descr iption: can enter a fan of any size I palace data, using the recursive methods work out a out
1
- 迷宫求解,利用深度优先搜索和非递归算法,地图可随意设置-Maze solving, the use of depth-first search and non-recursive algorithm, the map could be set
Maze-recursive
- 对于9*9迷宫的路径找寻,利用递归的方法,使得代码短小精悍,易于理解。-For the 9*9 maze path search, using a recursive method, makes the code dapper, easy to understand.
Maze
- 这是我的数据结构课程第三次作业--迷宫问题求解,包含递归与非递归算法-This is the third of my data structure course work- the maze problem-solving, including recursive and non-recursive algorithm
mystery
- 使用C语言编写的,通过二维数组、递归算法实现对迷宫的遍历,并找出正确路径的程序。-Using the C language, through two-dimensional array, recursive algorithm for traversing the maze and find the correct path of the program.
Maze-solving-the-problem
- 本演示程序中,首先实现一个以链表做存储结构的栈类型,然后编写一个求解迷宫的非递归程序。求得的通路以三元组(i,j,d)的形式输出,其中:(i,j)指示迷宫中的一个坐标的方向。-This demo program, the first to do to achieve a linked list storage structure stack type, and then write a non-recursive procedure to solve the maze. Obtained acc
Desktop
- 题目:假设迷宫由m行n列构成,有一个入口和一个出口,入口坐标为(1,1),出口坐标为(m,n),试找出一条从入口通往出口的最短路径。设计算法并编程输出一条通过迷宫的最短路径或报告一个“无法通过”的信息。 要求:用栈和队列实现,不允许使用递归算法。 一、 需求分析 -Topic: Assuming maze consisting of m rows and n columns form, having an inlet and an outlet, the inlet coord
mazepath
- 迷宫,关于递归算法和非递归算法求迷宫的源代码利用栈的原理来解释-Maze, about recursive and non-recursive algorithm maze algorithm for the use of the source code to explain the principles of the stack
Maze
- 利用C语言编程,分别采用递归和非递归的方法解决迷宫问题-Using the C programming language, namely the use of recursive and non-recursive methods to solve the maze problem
seekpath
- 一个比较简单的使用递归算法实现的迷宫程序。程序中1代表墙,0代表路。-Using a relatively simple recursive algorithm maze procedure. 1 represents the wall of the program, 0 road.
Maze
- 实现一个简单迷宫的的求解,利用堆栈,而不是用递归实现。对于初接触数据结构者有一定的参考价值。-Achieve a simple maze solving, using the stack instead of recursive. For those early exposure data structure has a certain reference value.
migong
- 用c语言编写的走迷宫问题的解决方法,运用递归的方法-c language Maze solve problems
zoumigong
- 用递归法在C语言环境下实现的最简单的走迷宫的小程序-Recursive method in C language environment to achieve the most simple little program Maze
算法设计
- 问题描述:以一个m×n的长方形表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。 基本要求:首先实现一个以链表作存储结构的栈类型,然后编写一个求解迷宫的非递归程序。求得的通路以三元组(i,j,d)的形式输出,其中:(i,j)指示迷宫中的一个坐标,d表示走到下一坐标的方向。(Problem Descr iption: a m * n rectangle represents the maze, and 0 and 1 i
maze
- 一种随机迷宫生成的递归分割算法的实现,以及基于DFS算法的自动寻路(Implementation of a recursive algorithm for random maze generation)