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

搜索资源列表

  1. 规则迷宫的一种求解思想及算法.rar

    1下载:
  2. 所属分类:游戏

    • 发布日期:
    • 文件大小:38416
    • 提供者:
  1. Labyrinth

    0下载:
  2. 利用栈实现的迷宫求解算法,可以进行多通道迷宫的求解,需要手动写入迷宫图形-Use stack to achieve the maze solving algorithm, can be multi-channel maze solving, you need to manually write the maze graphics
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-03
    • 文件大小:4878
    • 提供者:冯小珂
  1. labyrinth

    0下载:
  2. c语言下的一个迷宫求解问题。自动探索前方路径,最终找出唯一一条走出迷宫的路。-a maze solving problem with c language . Automatically discover the path ahead, and ultimately find the only way out of the labyrinth.
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:525865
    • 提供者:Bai
  1. delphi-Maze

    0下载:
  2. 迷宫求解,算法才用《数据结构》中的穷举法。源代码已经测试通过。-Maze solving algorithm only with "Data Structures" method of exhaustion. Source code has been tested.
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-16
    • 文件大小:282519
    • 提供者:
  1. maze

    0下载:
  2. 迷宫求解一般采用“穷举法”,逐一沿顺时针方向查找相邻块(一共四块-东(右)、南(下),西(左)、北(上))是否可通,即该相邻块既是通道块,且不在当前路径上。用一个栈来记录已走过的路径栈是限定仅在表尾(top)进行插入或删除操作的线性表。-Maze solving generally use the " exhaustive" one by one to find adjacent blocks in a clockwise direction (a total of four-
  3. 所属分类:Data structs

    • 发布日期:2017-05-07
    • 文件大小:1106676
    • 提供者:xf
  1. migongqiujie

    0下载:
  2. 对一个10*10矩阵表示的迷宫求解一条通路,矩阵中0表示通道,1表示墙壁。求解方法用到了栈的知识 是一个应用了栈的有趣例子-Maze for a 10* 10 matrix solving a path, said channel matrix 0, 1 wall. Solving methods used in the knowledge of the stack is a stack of interesting examples of the application of
  3. 所属分类:Other systems

    • 发布日期:2017-05-25
    • 文件大小:8673958
    • 提供者:毛妹嫦
  1. migong

    0下载:
  2. 迷宫求解:可以输入一个任意大小的迷宫数据,用非递归的方法求出一条走出迷宫的路径,并将路径输出 -Maze Solver: You can enter a maze of data of any size, with a non-recursive method get out of the maze of paths and path output
  3. 所属分类:CSharp

    • 发布日期:2017-04-25
    • 文件大小:11515
    • 提供者:王明
  1. 1001

    0下载:
  2. 利用回溯法实现的迷宫求解问题,算法效率高-Maze Solving
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-14
    • 文件大小:2610
    • 提供者:yss
  1. migongqiujie

    0下载:
  2. 使用栈结构完成迷宫求解算法演示,设计了GUI界面使算法演示更加直观-Using the stack structure to complete the maze solving algorithm demonstration, design the GUI interface makes the algorithm shows more intuitive
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-26
    • 文件大小:22450
    • 提供者:dsfqewr
  1. Maze

    0下载:
  2. 迷宫求解:根据提示输入迷宫行列,再输入障碍,找出路径。-the prgram of Maze
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:335527
    • 提供者:王慧斓
  1. maze

    0下载:
  2. 简单的迷宫求解原理,代码间接,通俗易懂.-Simple maze solving principles, code indirect, straightaway
  3. 所属分类:assembly language

    • 发布日期:2017-04-12
    • 文件大小:557
    • 提供者:henry
  1. Cat-and-mouse

    0下载:
  2. 这个程序是学数据结构后写的,里面涉及到了栈和队列的一些操作。开始本来只是要做迷宫求解的,-This program is a data structure after writing, which involves a number of operation stack and queue. Started originally just want to do maze solving,
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-04-14
    • 文件大小:2673
    • 提供者:li
  1. maze

    0下载:
  2. C++实现动态迷宫求解,基于类和栈结构;迷宫大小、构造以及入口出口位置可人为设定;动态显示寻找出口的过程,最终显示路线。-C++ achieve dynamic maze solving, class-based and stack structure maze size, structure and location of inlet and outlet can be artificial dynamic display of the process of finding exports
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1774
    • 提供者:zh
  1. Maze

    0下载:
  2. 利用栈解决非递归迷宫求解的C#算法实现,速度快,算法简明可读性强。是学习数据结构的优秀材料。-The realization of C# algorithm, using the stack to solve the non recursive maze solving fast algorithm is concise, readable. Is excellent learning materials data structure.
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:31369
    • 提供者:buaa_sheng
  1. MazePath

    0下载:
  2. 一个简单的关于迷宫求解的例子,主要利用堆栈实现-A simple example on solving the maze, the implementation of stack
  3. 所属分类:Other Games

    • 发布日期:2017-04-14
    • 文件大小:2751
    • 提供者:Chen De
  1. maze

    0下载:
  2. 课堂作业 迷宫求解问题 c语言 main文件直接用- Classwork maze problem solving c language main files directly with
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:3605
    • 提供者:
  1. Stack

    0下载:
  2. 数据结构栈的顺序存储和链式存储结构,及对应的基本操作,以及建立其上的各种功能算法,比如迷宫求解,符号匹配等等。-Data storage and chain structure of the stack sequence storage structure and the corresponding basic operation and to establish the various of the algorithm such as maze solving symbol match .
  3. 所属分类:Data structs

    • 发布日期:2017-05-13
    • 文件大小:2620894
    • 提供者:方湘豫
  1. puzzle

    0下载:
  2. 迷宫求解的具体算法,需自行输入迷宫方可求解-Specific algorithm to solve the maze, the need to manually enter the maze before solving
  3. 所属分类:CSharp

    • 发布日期:2017-05-04
    • 文件大小:38239
    • 提供者:jolie
  1. 07082815

    0下载:
  2. 内容是关于迷宫求解的,主要是联系有关的算法,()
  3. 所属分类:数值算法/人工智能

    • 发布日期:2018-01-07
    • 文件大小:1024
    • 提供者:Agdtvu
  1. 48633109

    0下载:
  2. 内容是关于迷宫求解的,主要是联系有关的算法,()
  3. 所属分类:图形图像处理

    • 发布日期:2018-04-21
    • 文件大小:1024
    • 提供者:Mvkoy
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 17 »
搜珍网 www.dssz.com