CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - A寻路算法

搜索资源列表

  1. Sterren_ASe_Explorer

    0下载:
  2. A*算法的演示程序,可以自由设置障碍和地形,单步演示A*算法的寻路过程。包含源码,是学习A*算法的最佳工具。-A * algorithm demo program, they can set up obstacles and terrain, single-step demonstration of the A * search algorithm road course. Includes source is studying A * algorithm for the best tools.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:389879
    • 提供者:river
  1. a-star-algorithm-implementation

    0下载:
  2. 基于stl的a star寻路算法的高效实现
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:18457
    • 提供者:WestWeald
  1. PushBox

    0下载:
  2. 推箱子游戏 为研究A*寻路算法的实现,编写了一个老游戏,希望对新手有所帮助。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:150110
    • 提供者:yy
  1. A星寻路算法例程

    2下载:
  2. A星寻路算法,有算法步骤详解,及一个小例子,可将寻路结果打印在控制台
  3. 所属分类:数据结构常用算法

  1. AStarDll A星路径搜索(采用二叉堆)

    3下载:
  2. 算法简述:A星路径搜索(采用二叉堆),最短路径寻路算法-Algorithm Descr iption: A star path search (using the binary heap), the shortest path Algorithm for Route
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-10-18
    • 文件大小:51707
    • 提供者:zhongkeli
  1. ClassAstar

    1下载:
  2. C++实现的A*寻路算法,找的好辛苦,源代码-C++ to achieve the A* Algorithm for Route, a good hard look for the source code ~ ~ ~
  3. 所属分类:Data structs

    • 发布日期:2016-08-29
    • 文件大小:2219008
    • 提供者:wrying
  1. astar_algorithm

    0下载:
  2. astar algorithm A* 自动寻路算法-astar algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2932
    • 提供者:lj
  1. A

    1下载:
  2. 本文件为C语言编写,A星寻路算法,自动寻找最优路径-This document is written in C, A Star pathfinding algorithm, automatically find the optimal path. .
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:2417
    • 提供者:wxk
  1. AStarPathfinding

    0下载:
  2. 一种很有效的寻路算法,经典算法!在游戏中应用很广-A very efficient pathfinding algorithm, the classical algorithm!
  3. 所属分类:Data structs

    • 发布日期:2017-05-13
    • 文件大小:3471413
    • 提供者:xue
  1. A

    0下载:
  2. 实现a星寻路,可以根据a星寻路算法,寻找电子地图中的路径-Find its way to achieve a star
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:518471
    • 提供者:周晓峰
  1. Astar

    0下载:
  2. 经典的智能寻路算法,一个老外写的很透彻很清晰,很容易让人理解神秘的A*算法。-Classic intelligent pathfinding algorithm, written by a foreigner is very thorough very clear and easy to understand the mystery of the A* algorithm.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:103300
    • 提供者:aa
  1. A_star

    1下载:
  2. c++实现的A*寻路算法,供菜鸟学习之用,老鸟无视之。-c++ implementation of the A* pathfinding algorithm for the rookie learning, fields and ignore it.
  3. 所属分类:Data structs

    • 发布日期:2015-04-27
    • 文件大小:1338368
    • 提供者:张晓一
  1. a

    0下载:
  2. A*寻路算法 迷宫算法 启发函数-A* pathfinding algorithm heuristic algorithm maze
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2817
    • 提供者:
  1. A_Star

    0下载:
  2. A*寻路算法演示程序,使用MFC开发,简单实用-A* pathfinding algorithm demo program, developed using MFC, simple and practical
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:54472
    • 提供者:zhanghao
  1. Maze_101002

    0下载:
  2. 这是一个基于深度搜索生成迷宫并且可以寻路的算法-This is a maze based on depth search
  3. 所属分类:Data structs

    • 发布日期:2017-05-04
    • 文件大小:54515
    • 提供者:Anna
  1. a201702123

    0下载:
  2. 星寻路算法真是我一生接触的第一个人工智能算法了。。。 A星寻路算法显然是用来寻路的,应用也很普遍,比如梦幻西游。。。算法的思路很简单,就是在bfs的基础上加了估值函数。 它的核心是 F(x) G(x) + H(x) 和open、close列表: G(x)表示从起点到X点的消耗(或者叫移动量什么的),H(X)表示X点到终点的消耗的估值,F(x)就是两者的和值。open列表记录了可能要走的区域,close列表记录了不会再考虑的区域。我们每次都选F值最小的区域搜索,就能搜
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3110
    • 提供者:王近两
  1. Python-Jump-Point-Search

    0下载:
  2. python版本的jps寻路算法源码。jps是A*的优化版本,通过跳过一系列不需要遍历的点达到节省计算量的目的。
  3. 所属分类:数据结构常用算法

搜珍网 www.dssz.com