CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 走迷宫 算法

搜索资源列表

  1. maze dfs

    0下载:
  2. dfs 深度优先搜索!这是走迷宫的基本算法。用广义表建立迷宫,用邻接表建立图,用dfs搜索,许多大学的数据结构作业-dfs depth-first search! Maze This is the basic algorithm. Generalized Table established maze, with the establishment of the adjacent table map, with dfs search, the University of many data str
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1.31kb
    • 提供者:笨熊
  1. maze

    0下载:
  2. 该算法是基于vc控制台编写的程序,提供了一种走出迷宫的思路,完成了一个较为简单的迷宫算法。
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:12.97kb
    • 提供者:李彩林
  1. Maze_arithmetic

    0下载:
  2. 这是我参加gpct程序大赛2等奖作品。本次大赛的内容是走迷宫,共分7级难度,第4级就有传送点,能把算法所控制的Explore传送到某位置,第5级有门与开关,门被某个开关所打开,第7级需要两个Explore才能走出去。可以说本竞赛难度相当的大。压缩包里还有迷宫的地图,有的地图非常复杂,即使是人也相当难于走出去。
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:632.55kb
    • 提供者:王斌
  1. mazecrossing

    0下载:
  2. 这是一个走迷宫算法的C++源程序,必须给出地图的宽度、高度,以及入口和出口坐标作为输入。-This is a Maze algorithm C++ Source must be given the map width, height, as well as import and export of coordinates as input.
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:4.56kb
    • 提供者:梅传根
  1. zou_migong

    0下载:
  2. 超酷小鼠走迷宫问题,经典算法与数据结构问题-Cool mouse Maze problems, the classic algorithm and data structure issues
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:2.55kb
    • 提供者:weishantc
  1. migong

    0下载:
  2. 本程序主要是用栈来实现迷宫问题。所用算法是非递归算法,输入为迷宫的行数和列数,然后在对应位置上输入其值(0表示该位置通,1表示该位置不通)。输出则是以三元组(i,j,d)的形式,其中(i,j)表示迷宫中的一个坐标,d表示走到下一坐标的方向,-This procedure is mainly used to achieve the maze problem stack. Algorithm used in a non-recursive algorithm, enter the number of
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:18.72kb
    • 提供者:尹素芳
  1. zmg

    0下载:
  2. A* 算法实现走迷宫通过编制迷宫程序来熟练掌握A*算法。充分理解A*算法和启发函数的关系-A* algorithmthrough the preparation of the maze procedure to skillfully master A* algorithm.* A full understanding of algorithms and heuristic function of
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:1.8kb
    • 提供者:harris
  1. maze_back

    1下载:
  2. 电脑鼠走迷宫算法 包含迷宫搜索和冲刺函数-Computer Mouse Maze algorithm is a function that contains a maze search and sprint
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:84.69kb
    • 提供者:钱江潮
  1. DigitalLabyrinth[V1.0.0]

    0下载:
  2. 自己设计的走迷宫算法,使用了较复杂的链表记录、分析迷宫路径,迷宫数据从一个ASCII文件读入,结果写入另一个文件中。在后来的修改中又添加了玩家自己试走迷宫的功能,也可以作为一个简易的小游戏。可供需要简单迷宫解算算法的朋友参考。-Maze solver with my own design algorithm, using complex list records, analysis of the maze path, maze data read from an ASCII file ,and
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:17kb
    • 提供者:Fun
  1. Maze

    0下载:
  2. 数据结构上面的走迷宫算法,用C++ 实现-Maze algorithm data structure above, using C++,
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:2.92kb
    • 提供者:执着
  1. MyExplorerDll

    0下载:
  2. 利用 Direction GetNextDirection()函数来实现走迷宫算法的主要思想;1)在当前位置,若右手不为墙,则原地右转返回toright(d);2)否则返回 d; 若返回的d为墙,则主函数调用void OnError() 通知动态链接库,d向左转两次,然后再调DirectionGetNextDirection()-Using Direction GetNextDirection () function to achieve the main ideas without hav
  3. 所属分类:Console

    • 发布日期:2017-04-09
    • 文件大小:1.18mb
    • 提供者:bob
  1. Genetic_Algorithm

    0下载:
  2. 基于遗传算法的走迷宫实现,主要算法原理为遗传算法,界面实现为WinForm-Maze based on genetic algorithm to achieve the main principle for the genetic algorithm method, the interface is implemented as WinForm
  3. 所属分类:CSharp

    • 发布日期:2017-04-02
    • 文件大小:52.74kb
    • 提供者:小光
  1. mazeclient

    0下载:
  2. 这是本次gusp大赛二等奖作品,题目是走迷宫算法,有源码和详细说明-This is the second prize in this contest works gusp, entitled Maze algorithm, a source code and detailed
  3. 所属分类:CSharp

    • 发布日期:2017-05-15
    • 文件大小:3.79mb
    • 提供者:邵帅
  1. maze

    0下载:
  2. 关于走迷宫算法的实现程序,完全采用C++语言实现,可以运行-Maze algorithm program, fully C++ language, you can run
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-31
    • 文件大小:945byte
    • 提供者:肖雪梅
  1. Maze

    0下载:
  2. 基于C++的一个走迷宫算法,可以输出迷宫与走出的路径,无路径则提示无法走出-Maze algorithm is based on a C++, you can output the path out of the maze, no path is prompted not out
  3. 所属分类:Other systems

    • 发布日期:2017-05-07
    • 文件大小:1.04mb
    • 提供者:张聪
  1. 1

    0下载:
  2. 走迷宫算法,里面有广度优先算法与深度优先算法-Maze algorithm, which has a breadth-first and depth-first algorithm algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1.12kb
    • 提供者:张飞
  1. 迷宫算法

    0下载:
  2. 到达每个点所走的步数都是最少的,多条路同时试着走,走到一个点,这个点就被占用了,不能再通过别的路走到这个点了()
  3. 所属分类:其他

    • 发布日期:2017-12-23
    • 文件大小:15kb
    • 提供者:sam0928
  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. 基于网络通信&多路径&死胡同的java迷宫

    0下载:
  2. 1.基于网络通信的走迷宫 2.算法为栈,深度优先搜索遍历 3.基于线程 4.多路径的寻找 5.死胡同的判别 6.基于GUI实现(1. the maze of maze based on network communication 2. algorithm is the stack, the depth first search traversal 3. based on threads 4. The search for themultipath 5. Discriminat
  3. 所属分类:其他

    • 发布日期:2018-04-20
    • 文件大小:14.29mb
    • 提供者:清于乐
  1. maze1

    0下载:
  2. 本源码通过C# GDI+ 编写。提供三种生成迷宫的算法(深度优先法,递归分割法,随机PRIM法),提供基于广度优先算法的迷宫自动寻径算法。迷宫大小、单元格大小、线粗均可自定义。优化了算法,递归改为栈实现,能够生成任意大地图而不会引起原来的函数递归栈溢出问题。生成迷宫后,支持键盘按键进行手动走迷宫。(The source code is written by C# GDI+. Three algorithms of maze generation (depth first, recursion s
  3. 所属分类:Windows编程

    • 发布日期:2018-05-07
    • 文件大小:86kb
    • 提供者:sp_jiangjunling
« 12 »
搜珍网 www.dssz.com