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

搜索资源列表

  1. myvcLabyrinth

    0下载:
  2. 谭浩强C语言书中的一个走迷宫的例子,此程序是其算法实现,用VC编译运行-Hao C-language book of a Maze example of this process is its algorithm, compiled with VC operation
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:38.82kb
    • 提供者:杨林
  1. tracy

    0下载:
  2. 求迷宫中从入口到出口的所有路径是一个经典的程序设计问题。由于计算机解迷宫室,通常用的是“穷举求解”的方法,即从入口出发,顺某一方向向前探索,若能走通,则继续往前走;否则沿原路退回,换一个方向在继续探索,直到所有可能的通路都探索到为止。为了保证在任何位置上都能沿原路返回,显然需要用一个后进先出的结构来保存从入口到当前位置的路径。因此,在球迷宫通路的算法中应用“栈”也就是自然而然的事了。 -seeking maze exports from the entrance to the path of a
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:38.03kb
    • 提供者:Tracy
  1. Astar

    0下载:
  2. 本代码用图示的方式完整的说明了A*算法的运行方式。 设置完起始,结束以及障碍点后,点击运行即可看到A*算法是怎样走迷宫的
  3. 所属分类:人工智能/神经网络/遗传算法

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

    0下载:
  2. 可以输入一个任意大小的迷宫数据,用非递归的方法求出一条走出迷宫的路径,并将路径输出; 要求: 在上交资料中请写明:存储结构、基本算法(可以使用程序流程图)、源程序、测试数据和结果、算法的时间复杂度、另外可以提出算法的改进方法; -Can enter a maze of any size data, with non-recursive method to derive a path out of the maze, and the path output requirements
  3. 所属分类:assembly language

    • 发布日期:2017-03-29
    • 文件大小:6.34kb
    • 提供者:迟浩东
  1. release

    0下载:
  2. 走迷宫的A*算法,用的是数组,个人的练习作品-Maze of the A* algorithm, using the array, the individual s practice work
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-24
    • 文件大小:123.84kb
    • 提供者:胡凯
  1. 1079113201

    0下载:
  2. 任务:可以输入一个任意大小的迷宫数据,用非递归的方法求出一条走出迷宫的路径,并将路径输出; 要求: 在上交资料中请写明:存储结构、基本算法(可以使用程序流程图)、源程序、测试数据和结果、算法的时间复杂度、另外可以提出算法的改进方法; -Task: You can enter a maze of any size data, with non-recursive method to derive a path out of the maze, and the path output
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-04-29
    • 文件大小:106.24kb
    • 提供者:迟浩东
  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. axing

    0下载:
  2. 利用a星算法来走迷宫的C++实例。console下运行,a星算法比较简洁明了,便于学习-The use of a satellite algorithm to Maze in C++ examples. console running, a star algorithm is relatively simple and clear, easy to learn
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-28
    • 文件大小:9.56kb
    • 提供者:温智君
  1. maze

    0下载:
  2. 用VC绘制一个迷宫,并根据一定算法,走出迷宫,(数据结构与算法)-Draw a maze with the VC, and according to some algorithm, out of the maze (data structures and algorithms)
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:184.22kb
    • 提供者:cl3
  1. vb--maze

    0下载:
  2. 当时用vb做的一个简易的走迷宫程序,使用的深度优先算法,有简单的界面。-Done with vb then a simple maze procedure, the use of depth-first algorithm, a simple interface.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-15
    • 文件大小:7.93kb
    • 提供者:ll
  1. maze

    0下载:
  2. 用深度优先算法解决的走迷宫问题,使用文件输入输出,其中输入的矩阵中,0表示不可走,1表示可走。-With a depth-first algorithm to solve the maze problem, use the file input and output, where the input matrix, 0 can not go, 1 to go.
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:256.28kb
    • 提供者:邹伟豪
  1. Maze

    0下载:
  2. 自己用Java写的一个随机生成迷宫程序,采用深度优先算法生成迷宫,模拟小老鼠走迷宫。-A randomly generated maze procedure written in Java, using depth-first algorithm to generate a maze to simulate the maze of little mice.
  3. 所属分类:Other Games

    • 发布日期:2017-03-28
    • 文件大小:3.01kb
    • 提供者:exfoide
  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. migonglaoshu

    0下载:
  2. 数据结构,迷宫老鼠问题求解 迷宫是一个矩形区域,它有一个入口和一个出口。在迷宫的内部包含不能穿越的墙或障碍。迷宫的入口在左上角,出口在右下角。假定用n*m的矩阵来描述迷宫,位置(1,1)表示入口,(n,m)表示出口,n和m分别代表迷宫的行数和列数。迷宫中的每个位置都可用其行号和列号来指定。在矩阵中,当且仅当在位置(i,j)处有一个障碍时其值为1,否则其值为零。(即0表示能通过,1 表示不能通过。)现假设老鼠从左上角[1,1]进入迷宫,编写算法,寻求一条从右下角[m,n] 出去的路径。 迷
  3. 所属分类:software engineering

    • 发布日期:2017-12-07
    • 文件大小:1.69kb
    • 提供者:翁雪花
  1. migong

    0下载:
  2. 这是一个走迷宫的小程序,主要用到了搜索的算法。-This is a maze of small procedures, mainly used in the search algorithm.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-10
    • 文件大小:328.62kb
    • 提供者:李智博
  1. Instances-of-genetic-algorithm

    0下载:
  2. 遗传算法实例,vc6.0,一个用遗传算法实现的走迷宫的例子,本代码能够让你在看遗传算法的看得云里雾里时,揭开那层面纱,让你更加理解遗传算法,编写出自己的遗传算法.-Instances of genetic algorithm, the Maze example of a genetic algorithm, the code allows you watching When the Genetic Algorithm seen foggy opened the veil, so you bett
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-11-28
    • 文件大小:13.37kb
    • 提供者:jimye
搜珍网 www.dssz.com