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

搜索资源列表

  1. 8digitsA

    0下载:
  2. A星算法+强启发函数解八数码问题,自带判断是否有解-A Star Algorithm+ strong heuristic function solution of 8 digital issues, bring their own to determine whether the broken
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-01
    • 文件大小:965.93kb
    • 提供者:胡茂名
  1. 8_puzzle

    0下载:
  2. 8数码问题的Java求解,采用A*算法。数据结构采用的Vector<int[]>。输出为"no solution"或一系列表示求解过程的字符串。 某些30步的测试样例需要半分钟左右,但是绝对是正确解~~万望您能不吝点滴时间耐心等待……orz thnx~~ 我用的启发函数计算了现在的网格距离目标网格还有多远。 具体算法是,将每一格中的数字的坐标与其应该在的坐标的差加到一起,得到这个最终值h(x) 也就是Manhattan_Distance 源码使用
  3. 所属分类:Java Develop

    • 发布日期:2017-03-30
    • 文件大小:653.94kb
    • 提供者:Siegfried
  1. A-star

    0下载:
  2. A*算法,启发式路径搜索(星际,帝国等即时战略游戏中AI寻路)-A* algorithm, heuristic path search (Star, Imperial and other real-time strategy game AI pathfinding)
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-22
    • 文件大小:394.04kb
    • 提供者:赵鹏
  1. AstarAlgorithm

    0下载:
  2. 基于启发式收索的A算法,A星算法的C++类的完整实现源代码-A collection of cable based on heuristic algorithms, A star algorithm in C++ source code for the complete implementation of class
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-13
    • 文件大小:2.6kb
    • 提供者:wangzhenjun
  1. Taquin

    0下载:
  2. 15 puzzle A star Heuristic
  3. 所属分类:Java Develop

    • 发布日期:2017-04-16
    • 文件大小:223.61kb
    • 提供者:Yuekui Ruan
  1. Astar

    0下载:
  2. 利用A星算法解决迷宫问题,用到了耗散函数,即启发式的h-A star algorithm to solve the maze, use the dissipation function, that is, heuristic h
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-25
    • 文件大小:1.36kb
    • 提供者:张强
  1. AStar

    0下载:
  2. A* A星算法, 经典的启发式寻求最短路径的算法,启发函数采用最简单的曼哈顿法,从OPEN表中选出最小的f值的点采用堆排序,里面注释很多,谢谢,共同学习!-A* A Star algorithm, classical heuristic seeks the shortest path algorithm, heuristic function takes the simplest Manhattan method selected from the OPEN statement smallest
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-01
    • 文件大小:7.88kb
    • 提供者:彭陶
  1. Astar

    0下载:
  2. A星寻路算法。FlashDevelop开发环境.用曼哈顿启发函数-A Star pathfinding algorithm. FlashDevelop development environment with Manhattan heuristic function
  3. 所属分类:FlashMX/Flex

    • 发布日期:2017-04-10
    • 文件大小:1.35mb
    • 提供者:
  1. Astar-KO

    1下载:
  2. 区别于以往传统最短路算法,如:Dijkstra算法或者Floyd算法。该算法为启发式最短路径搜寻算法:A STAR-Finding the shortest path: a heuristic algorithm named A STAR
  3. 所属分类:matlab

    • 发布日期:2017-04-25
    • 文件大小:17.77kb
    • 提供者:覃文
  1. AiiPn

    0下载:
  2. C++ A星算法实现八数码问题,启发函数为每一个将牌与其目标位置之间距离(不考虑夹在其间的将牌)的总和。-C++ A star algorithm eight digital, distance heuristic function sum (without considering sandwiched therebetween trump) between each of the brand to its target location
  3. 所属分类:CSharp

    • 发布日期:2017-04-14
    • 文件大小:2.55kb
    • 提供者:张阳
  1. Astar

    0下载:
  2. A星算法解决8数码问题,一种启发式搜索程序-A star algorithm to solve 8 digital problem, a heuristic search procedures
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-14
    • 文件大小:3.24kb
    • 提供者:王勇
  1. maze-game

    0下载:
  2. 一个用C语言写的迷宫游戏 定义一个8*8的格子,这64个格子是人物可以移动到的位置;障碍物定义为两个相邻格子之间的挡板,0或1两种状态。类似上述方法,可以定义整个迷宫的布局,64个格子,对应数目的挡板,迷宫出口,迷宫入口,小人,这些元素。 文件里,需要存储迷宫大小,挡板位置,出口,入口。 小人在任一位置,可以向四个方向移动,有挡板则可以移动,没挡板则不可以移动。 最优路径的提示,使用A星路径算法去做,实质是一个启发式广度优先遍历。-A written in C language
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-14
    • 文件大小:2.58kb
    • 提供者:ShichaoLiang
  1. TheEightDigits

    0下载:
  2. 运用启发式搜索算法,用来解决一个简单的八数码问题。这里用的是A星算法。-Using heuristic search algorithm, which is used to solve a simple eight digital problem. Here is A star algorithm.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-03
    • 文件大小:912.21kb
    • 提供者:武林
  1. ProjectAI

    0下载:
  2. c++ AI project artificial intelligence path planning route best first a * star * greedy first uniform cost dijkstra s optimal search heuristic incomplete project not working fully
  3. 所属分类:Algorithm

    • 发布日期:2017-04-30
    • 文件大小:219.12kb
    • 提供者:
  1. astardemo

    0下载:
  2. A*搜寻算法俗称A星算法。A*算法是比较流行的启发式搜索算法之一,被广泛应用于路径优化领域[。它的独特之处是检查最短路径中每个可能的节点时引入了全局信息,对当前节点距终点的距离做出估计,并作为评价该节点处于最短路线上的可能性的量度。(A * search algorithm commonly known as A Star algorithm. A * algorithm is one of the more popular heuristic search algorithms and is
  3. 所属分类:GPS编程

    • 发布日期:2018-04-19
    • 文件大小:5kb
    • 提供者:diuman
  1. A星算法

    0下载:
  2. A星算法 应用于路径优化算法 是一种具有启发性策略的算法 本文对a星算法进行介绍与总结 并用java语言实现!(The application of A star algorithm to the path optimization algorithm is an heuristic strategy. This paper introduces and summarizes the a star algorithm and implements it in the Java language.
  3. 所属分类:Java编程

    • 发布日期:2018-04-22
    • 文件大小:28kb
    • 提供者:fffry
  1. AStarPath

    0下载:
  2. A*搜寻算法俗称A星算法。A*算法是比较流行的启发式搜索算法之一,被广泛应用于路径优化领域[。它的独特之处是检查最短路径中每个可能的节点时引入了全局信息,对当前节点距终点的距离做出估计,并作为评价该节点处于最短路线上的可能性的量度。(The A* search algorithm is commonly known as the A-star algorithm. The A* algorithm is one of the more popular heuristic search algor
  3. 所属分类:其他

    • 发布日期:2018-05-03
    • 文件大小:708kb
    • 提供者:xiaoqiangzi
搜珍网 www.dssz.com