CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 迷宫求解

搜索资源列表

  1. maze

    0下载:
  2. 本代码实现的是一个简单迷宫问题。以一个m*n的长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,豁得出没有同路的结论。 基本要求为: 首先实现一个以链表做存储结构的栈类型,然后编写一个求解迷宫的非递归程序,求得的通路一三元组(i,j,d)的形式输出,其中:(i,i)指示迷宫中的一个坐标,d表示走到下一坐标的方向。-The implementation of the code is a simple maze. A m* n t
  3. 所属分类:Console

    • 发布日期:2017-11-24
    • 文件大小:267321
    • 提供者:丁洁琼
  1. Maze

    0下载:
  2. [rar文件] flash as3.0 求解迷宫最短路径 深度优先策略-[Rar file] flash as3.0 Solving the shortest path in the maze depth-first strategy
  3. 所属分类:Data structs

    • 发布日期:2017-11-27
    • 文件大小:173257
    • 提供者:撒旦
  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
    • 文件大小:188443
    • 提供者:tgl
  1. Mazepath

    0下载:
  2. 一个求解迷宫通路的程序。以一个M*N的长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍。对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。以链表作存储结构的栈类型非递归程序。-A path to solve the maze procedure. In an M* N' s long square maze, 0 and 1, respectively maze of paths and obstacles. For any set of the maze, find a
  3. 所属分类:Data structs

    • 发布日期:2017-11-02
    • 文件大小:5675030
    • 提供者:安陌
  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
    • 文件大小:1683
    • 提供者:张妍
  1. labyrinth

    0下载:
  2. 用c语言求解迷宫问题 很详细是一个比较不错的课设-Problem solving maze with c language is a very detailed set relatively good lesson
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-17
    • 文件大小:68772
    • 提供者:朱洁
  1. park

    0下载:
  2. 迷宫数据结构de 迷宫方程实现一个以链表作存储结构的栈类型,然后编写一个求解迷宫的非递归程序-De labyrinth maze data structure equations for the realization of a linked list storage structure of the stack type, and then write a program to solve a maze of non-recursive
  3. 所属分类:software engineering

    • 发布日期:2017-04-07
    • 文件大小:565522
    • 提供者:郭晓锋
  1. migong

    0下载:
  2. 有关迷宫的项目程序,用visual c++6.0编译通过可决定是自动生成迷宫,还是使用已有的迷宫。当迷宫给出过后,用“重复排除法”的找路径算法求解迷宫路线-For the maze project procedures, compiled with visual c++6.0 decision was automatically generated via a maze, or use an existing maze. When given after the maze, with the &
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-05
    • 文件大小:2816
    • 提供者:zrx
  1. paradise

    1下载:
  2. 编写一个程序求解迷宫问题,迷宫是一个m行n列的0-1矩阵,其中0表示无障碍,1表示有障碍,设入口为(1,1),出口为(m,n),每次移动只能从一个无障碍的单元移到其周围8个方向上任一无障碍的单元,编制程序给出一条通过迷宫的路径。 要求:(1)输入m*n的迷宫矩阵,如: 6 9 0 1 0 0 0 1 1 0 0 1 0 0 0 1 1 0 1 1 0 1 1 0 0 0 0 1 1 1 1 0 1 1 1 1 0 1 1 1 0 1 0 0 1 0 0
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:1326
    • 提供者:YY
  1. short-path

    0下载:
  2. 在dos环境下自制迷宫,用于求最短求解路径,打印出路径坐标-In the dos environment homemade maze for solving the shortest path, print out the path coordinate
  3. 所属分类:Other systems

    • 发布日期:2017-04-04
    • 文件大小:1085
    • 提供者:杨桐
  1. Stack

    0下载:
  2. 栈顺序定义,递归求解迷宫问题,栈和递归的建立和调用算法-Stack sequence defined recursively solving maze problem, stacks and recursive algorithm for the establishment and call
  3. 所属分类:Console

    • 发布日期:2017-04-07
    • 文件大小:1371
    • 提供者:张宏超
  1. algo3-5

    0下载:
  2. 求解有关迷宫路径的问题的算法,可以输出最优路径,以及所有路径-path of a puzzle...
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:714912
    • 提供者:Xue Lanqing
  1. migong

    0下载:
  2. 用MFC写的迷宫小游戏,使用递归算法求解路径,迷宫可以自行设置-Written with MFC maze path using a recursive algorithm, you can set your own maze
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-04-05
    • 文件大小:271790
    • 提供者:YUYU
  1. maze-addressing

    0下载:
  2. C数据结构中的迷宫路径的求解,希望对C语言数据结构的研究有帮助-C data structure of the maze addressing
  3. 所属分类:Other systems

    • 发布日期:2017-04-24
    • 文件大小:251420
    • 提供者:wanglin
  1. Maze

    0下载:
  2. 使用递归方法与非递归方法求解迷宫问题。内容涉及递归的消去、属于数据与算法课程。-Use recursive and non-recursive method for solving approach maze. Covering recursion elimination, part of the data and algorithms course.
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:4981
    • 提供者:xuebao1942
  1. BFS

    0下载:
  2. 迷宫问题 队列求解 界面还不完善 可以自己添加-Maze problem solving interface queue is not perfect you can add your own
  3. 所属分类:assembly language

    • 发布日期:2017-04-11
    • 文件大小:1042
    • 提供者:C
  1. Maze-code

    0下载:
  2. 以一个m×n的长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。首先用二维数组存储迷宫数据,迷宫数据由用户输入。一个以链表作存储结构的栈类型,然后编写一个求解迷宫的递归或非递归程序。求得的通路以三元组(i,j,d)形式输出,其中:(i,j)指示迷宫中的一个坐标,d表示走到下一坐标的方向(东、南、西、北四个方向所用代表数字,自行定义) -With an m × n the long square maze, 0 an
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-01
    • 文件大小:3069
    • 提供者:Ryan
  1. 3

    0下载:
  2. 随即产生10*10迷宫,用堆栈的的方法求解出走出迷宫的路径,或走不通-Randomly generated 10* 10 maze, use the stack method flee out of the path of the maze, or to go
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1102
    • 提供者:路风
  1. Mice-have-gone-astray-official

    0下载:
  2. 老鼠走迷宫是递回求解的基本题型,我们在二维阵列中使用2表示迷宫墙壁,使用1来表 示老鼠的行走路径,试以程式求出由入口至出口的路径。-Mouse Maze recursive solving fundamental questions, we used two maze walls in the two-dimensional array, using a mouse to indicate the walking path, try to programmatically determine
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-11
    • 文件大小:859
    • 提供者:tiercel
  1. stack

    0下载:
  2. 栈的基本功能实现,以及利用栈求解迷宫问题-The realization of the basic functions of the stack, and the use of stacks maze problem solving
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-02
    • 文件大小:750235
    • 提供者:潇潇
« 1 2 ... 10 11 12 13 14 1516 17 »
搜珍网 www.dssz.com