CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - 迷宫 递归

搜索资源列表

  1. labyrinth

    0下载:
  2. 本程序的功能是找出指定迷宫的路径,包括了递归和非递归算法。-This procedure is to find out the designated functions of the labyrinth path, including the recursive and non-recursive algorithm.
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:15.76kb
    • 提供者:huangqiuxuan
  1. MG

    0下载:
  2. 在一个二维数组组成的迷宫中从指定的起点通过递归算法找到指定的出口(以图形界面表示)-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)
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:119.5kb
    • 提供者:lee
  1. migong

    0下载:
  2. 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
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:163.82kb
    • 提供者:mfw
  1. Maze

    0下载:
  2. 迷宫问题 非递归算法 自动生成m*n矩阵,1表示不通,0表示通行-Maze problem of non-recursive algorithms automatically generate m* n matrix, 1 is blocked, passage 0
  3. 所属分类:Other systems

    • 发布日期:2017-03-26
    • 文件大小:18.53kb
    • 提供者:明猩
  1. famousalgorithmcollection

    0下载:
  2. <经典算法合集>其中包括: 最小生成树 MD5加密 LZW压缩 josephus 乘法表 积分 枚举 基数转换 矩阵问题举例 求解质数 圆周率的求法 改进的快速排序法 几种插入排序法 水仙花数 迷宫生成器 生命游戏 递归 回溯 贪心 动态规划 排序算法-" Classical algorithm Collection> These include:
  3. 所属分类:Other systems

    • 发布日期:2017-05-16
    • 文件大小:4.02mb
    • 提供者:我很笨
  1. Maze-solution

    0下载:
  2. 迷宫求解 *问题描述:可以输入一个任意大小的迷i宫数据,用非递归的方法求出一条走出迷宫的路径,并将路径输出; *要求: 在上交资料中请写明:存储结构、基本算法(可以使用程序流程图)、源程序、测试数据和结果、算法的时间复杂度、另外可以提出算法的改进方法;-Maze solution * descr iption: can enter a fan of any size I palace data, using the recursive methods work out a out
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:1.93kb
    • 提供者:Jay
  1. 1

    0下载:
  2. 迷宫求解,利用深度优先搜索和非递归算法,地图可随意设置-Maze solving, the use of depth-first search and non-recursive algorithm, the map could be set
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:3.1kb
    • 提供者:min
  1. Maze-recursive

    0下载:
  2. 对于9*9迷宫的路径找寻,利用递归的方法,使得代码短小精悍,易于理解。-For the 9*9 maze path search, using a recursive method, makes the code dapper, easy to understand.
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-01
    • 文件大小:816.43kb
    • 提供者:yangpengboo
  1. Maze

    0下载:
  2. 这是我的数据结构课程第三次作业--迷宫问题求解,包含递归与非递归算法-This is the third of my data structure course work- the maze problem-solving, including recursive and non-recursive algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-02
    • 文件大小:184.03kb
    • 提供者:tgl
  1. mystery

    0下载:
  2. 使用C语言编写的,通过二维数组、递归算法实现对迷宫的遍历,并找出正确路径的程序。-Using the C language, through two-dimensional array, recursive algorithm for traversing the maze and find the correct path of the program.
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-05
    • 文件大小:163.31kb
    • 提供者:豆豆
  1. Maze-solving-the-problem

    0下载:
  2. 本演示程序中,首先实现一个以链表做存储结构的栈类型,然后编写一个求解迷宫的非递归程序。求得的通路以三元组(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
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-23
    • 文件大小:1.64kb
    • 提供者:张妍
  1. Desktop

    0下载:
  2. 题目:假设迷宫由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
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-13
    • 文件大小:33.87kb
    • 提供者:雷老虎
  1. mazepath

    0下载:
  2. 迷宫,关于递归算法和非递归算法求迷宫的源代码利用栈的原理来解释-Maze, about recursive and non-recursive algorithm maze algorithm for the use of the source code to explain the principles of the stack
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:292.85kb
    • 提供者:诚可贵
  1. Maze

    0下载:
  2. 利用C语言编程,分别采用递归和非递归的方法解决迷宫问题-Using the C programming language, namely the use of recursive and non-recursive methods to solve the maze problem
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:101.48kb
    • 提供者:eliizabeth
  1. seekpath

    0下载:
  2. 一个比较简单的使用递归算法实现的迷宫程序。程序中1代表墙,0代表路。-Using a relatively simple recursive algorithm maze procedure. 1 represents the wall of the program, 0 road.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:575byte
    • 提供者:张旭
  1. Maze

    0下载:
  2. 实现一个简单迷宫的的求解,利用堆栈,而不是用递归实现。对于初接触数据结构者有一定的参考价值。-Achieve a simple maze solving, using the stack instead of recursive. For those early exposure data structure has a certain reference value.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-28
    • 文件大小:211.46kb
    • 提供者:俞航
  1. migong

    0下载:
  2. 用c语言编写的走迷宫问题的解决方法,运用递归的方法-c language Maze solve problems
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:528byte
    • 提供者:鱼鱼
  1. zoumigong

    0下载:
  2. 用递归法在C语言环境下实现的最简单的走迷宫的小程序-Recursive method in C language environment to achieve the most simple little program Maze
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:559byte
    • 提供者:紫嫣
  1. 算法设计

    0下载:
  2. 问题描述:以一个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
  3. 所属分类:其他

    • 发布日期:2017-12-21
    • 文件大小:2kb
    • 提供者:beautiful
  1. maze

    0下载:
  2. 一种随机迷宫生成的递归分割算法的实现,以及基于DFS算法的自动寻路(Implementation of a recursive algorithm for random maze generation)
  3. 所属分类:其他

    • 发布日期:2018-04-29
    • 文件大小:182kb
    • 提供者:godcherry
搜珍网 www.dssz.com