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

搜索资源列表

  1. c++buildermaze

    0下载:
  2. 用C++BUILDER做的一个迷宫,可以实现深度优先,广度优先和启发式搜索算法-C BUILDER do a maze, can achieve priority depth, breadth priority and heuristic search algorithm
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1435872
    • 提供者:
  1. spath

    0下载:
  2. 有关启发式搜索的经典算法:A*最短路径算法的实例和对应程序。关注的朋友可以留意一下。(比传统的Dijistra算法效率高很多哦!^_^)-the heuristic search algorithm of the classic : A * shortest path algorithm examples and the corresponding procedures. Concerned friends can look. (Dijistra than the traditional alg
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:35025
    • 提供者:莜月
  1. WinNTL-5_3_1

    0下载:
  2. 密码学界牛人Victor Shoup用C++编写数论类库。 NTL is a high-performance, portable C++ library providing data structures and algorithms for arbitrary length integers for vectors, matrices, and polynomials over the integers and over finite fields and for arbitrary p
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:764415
    • 提供者:yangmuxiang
  1. AIsearchproblem

    0下载:
  2. 对于通常的九宫问题(八数码)的一个解决方案,程序中实现的三种搜索算法——深度,广度,启发式-Nine-palace for the usual problems (8 digital) of a solution, and procedures to achieve the three search algorithms- depth, breadth, heuristic
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1222156
    • 提供者:Liny
  1. SimulatedAnnealing

    0下载:
  2. Simulated Annealing (SA) is a smart (meta)-heuristic for Optimization. Given a cost function in a large search space, SA replaces the current solution by a random "nearby" solution. The nearby solution is chosen with a probability that depends on the
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:20145
    • 提供者:dingchong
  1. LCsearch

    0下载:
  2. 算法:华容道问题的启发式搜索。寻求一种最优解的快速算法。-Algorithm: Huarong issues heuristic search.
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:1577
    • 提供者:doingo
  1. coloring_graph

    1下载:
  2. Algorithm colouring graph minimum numbers of colours. Dsatur heuristic algorithm.
  3. 所属分类:Data structs

    • 发布日期:2015-05-19
    • 文件大小:1624
    • 提供者:xssk
  1. matlabyiqunsuanfa

    5下载:
  2. 蚁群算法是一种用来在图中寻找优化路径的机率型算法。是一种求解组合最优化问题的新型通用启发式方法,该方法具有正反馈、分布式计算和富于建设性的贪婪启发式搜索的特点。通过建立适当的数学模型,基于故障过电流的配电网故障定位变为一种非线性全局寻优问题。-Ant colony algorithm is a method used to find optimal path in the graph the probability-based algorithm. Is a combination of opt
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:2648
    • 提供者:prince
  1. qingyun

    0下载:
  2. 清运启发式算法,简洁的结构,并且内含例子。-Clearance heuristic
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1485
    • 提供者:mafen
  1. 8-pluzze

    0下载:
  2. 这个是基于启发式搜索算法解八数码问题的一个演示程序,旨在演示启发式搜索及A*算法的基本使用方式。内部已经写好了三种启发式算法,可以在使用过程中选用。并另附了一份实验报告。-This is based on the heuristic search algorithm for solving the the 8-puzzle Problem. Program showed how to use heuristic search and A* algorithm. Within three heu
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:38663
    • 提供者:徐晓涛
  1. graph-search-algorithm

    1下载:
  2. 图搜索的非启发式和启发式算法, 着重分析了它们各自的复杂性、优缺点及 其相互关系, 提出了改进要点. 这对于如何选用一个合适的搜索算法是十分有益的.-Figure of non-heuristic and heuristic search algorithm, analyzes the complexity of their respective advantages and disadvantages and their relationship, an improved points.
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:84321
    • 提供者:quanyecha
  1. fenzhijiexianfa

    0下载:
  2. 分支界限法是由“分支”和“界限”策略两个部分组成,其中“分支”策略是对问题空间按照广度优先的策略进行搜索;“限界”策略是为了加速搜索速度而采用启发信息剪枝的策略。 使用分支限界法来解决单源最短路径问题时主要利用结点控制关系剪枝,在一般情况下,如果解空间树中以结点Y为根的子树中所含的解优于以结点X为根的子树中所含的解,则结点Y控制了结点X,以被控制的结点X为根的子树可以剪去。算法实现时,使用邻接矩阵表示图,二维数组存储图的邻接矩阵,使用数组记录源到各顶点的距离和路径上的前驱顶点。 -Br
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:815
    • 提供者:ss
  1. AHSACPinGo

    0下载:
  2. Paper <A Heuristic Search Algorithm for Capturing Problems in Go>
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:100887
    • 提供者:sunkai
  1. main

    0下载:
  2. 采用启发式修补方法实现的N皇后问题,最后意图的方式输出结果。-Heuristic repair method to achieve the N queens problem, the way the final output intentions.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1563
    • 提供者:陈云卿
  1. 8

    0下载:
  2. 八数码问题 单向启发式搜索 hash表 标准的八数码解-Eight-way digital issue standard heuristic search hash table of eight digital solution
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:985
    • 提供者:苏程序
  1. a

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

    • 发布日期:2017-04-14
    • 文件大小:2817
    • 提供者:
  1. Hua-rong-dao

    0下载:
  2. 华容道的广度优先搜索求解——散列查找和启发式搜索的应用-The game hua-rong-dao breadth first search solution-hash search and heuristic search application
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:209198
    • 提供者:yuk
  1. nQueens

    0下载:
  2. 关于N皇后C++程序,这个程序运用了启发式搜索-heuristic search about n queens using C++
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:900318
    • 提供者:moria
  1. eightNum_lufeiop

    0下载:
  2. 以八数码问题为例,设计一类滑块问题的求解系统,初步掌握智能搜索算法中的盲目搜索和启发式搜索这两类基本方法,同时通过具体的问题体会搜索算法、数据结构、程序设计等知识的综合应用 A*用到是不在位将牌数和曼哈顿距离,动态显示,有算时间 我自己很用心做的,有实验报告,绝对详细-Eight digital issues, for example, design a slider problem solving system, initially grasp the two basic method
  3. 所属分类:Data structs

    • 发布日期:2017-05-14
    • 文件大小:3544349
    • 提供者:陆飞
  1. ANT

    0下载:
  2. A*算法通过启发式探索下一结点,逐步逼近目标结点,且使得路径最短。-A* algorithm heuristic to explore the next node, and gradually approaching the target node, and that the shortest path.
  3. 所属分类:Data structs

    • 发布日期:2017-05-01
    • 文件大小:576850
    • 提供者:王莉
« 12 »
搜珍网 www.dssz.com