搜索资源列表

  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. (Diji
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-31
    • 文件大小:34816
    • 提供者:莜月
  1. A的算法

    0下载:
  2. A*算法属于一种启发式搜索。它扩展结点的次序类似于广度优先搜索,但不同的是每生成一个子结点需要计算估价函数F,以估算起始结点到该结点的代价及它到达目标结点的代价的和;每当扩展结点时,总是在所有待扩展结点中选择具有最小F值的结点作为扩展对象,以便使搜索尽量沿最有希望的方向进行。 -A* algorithm is a heuristic search. It extended node in the order of priority si
  3. 所属分类:其他小程序

    • 发布日期:2024-05-31
    • 文件大小:2048
    • 提供者:
  1. amaze32v3

    0下载:
  2. 2. 设计一个启发式函数(最好是A*搜索函数)并编程实现,设计报告中必须给出函数的具体形式并说明设计思想(或分析为什么是A*算法)-2. Design a heuristic function (A* is the best search function), and Programming, design report must be given to the specific function and state forms des
  3. 所属分类:界面编程

    • 发布日期:2024-05-31
    • 文件大小:526336
    • 提供者:小龙
  1. tanxin

    0下载:
  2. 这是一个贪心算法的c程序。贪心算法(也叫贪婪算法)不是某种特定的算法,而是一类抽象的算法,或者说只是一种思想,它的具体表现在,对解空间进行搜索时,不是机械地搜索,而是对局部进行择优选取,贪心算法的目的不是为了找到全部解,也当然找不出最优解,而只是找出一种可行解,这样就会得到惊人的高效性。因此,贪心算法也叫启发式搜索,这种启发就是所谓的“贪心策略”。-This is a greedy algorithm c procedures. Gre
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-31
    • 文件大小:1024
    • 提供者:王卫红
  1. 57130.45916033

    0下载:
  2. 人工智能八数码源代码 启发式搜索解决八数码问题的源代码 8数码难题算法,界面比较漂亮。操作简单-eight digital artificial intelligence heuristic search the source code to solve the problem eight digital source code 8 puzzle algorithm, interface more beautiful. Simple o
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-31
    • 文件大小:2485248
    • 提供者:小风
  1. stochastic_opt

    0下载:
  2. 一个启发式搜索算法  给初学者用的 随便参考着用  提供了多种策略-a heuristic search algorithm for beginners with the casual reference to using a variety of strategies
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-31
    • 文件大小:31744
    • 提供者:沈磊
  1. EightPuzzle

    0下载:
  2. A*算法属于一种启发式搜索,它扩展结点的次序类似于广度优先搜索,但不同的是每生成一个子结点需要计算估价函数F,以估算起始结点的约束经过该结点至达目标结点的最佳路径代价 每当扩展结点时,意是在所有待扩展结点中选择具有最小F值的结点做为扩展对象,以便使搜索尽量沿最有希望的方向进行.A*算法只要求产生问题的全部状态空间的部分结点及关系,就可以求解问题了,搜索效率较高-A* algorithm is a heuristic search, wh
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-31
    • 文件大小:1201152
    • 提供者:
  1. wode_bashuma

    0下载:
  2. 八数码难题 A*算法 利用堆栈实现启发式搜索-Eight digital dilemma A* algorithm uses the stack to achieve heuristic search
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-31
    • 文件大小:595968
    • 提供者:laozi
  1. ldfs

    0下载:
  2. 基于学习的深度优先搜索算法,一种通用的启发式搜索算法用于确定的,非确定以及MDPs环境中-Learning Depth-First Search:A Unified Approach to Heuristic Search in Deterministic and Non-Deterministic Settings,and its application to MDPs
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-31
    • 文件大小:724992
    • 提供者:刘小飞
  1. CHAPTER5

    0下载:
  2. 遗传算法是一种模拟生物进化机制的随机全局优化搜索方法,具有很强的全局优化能力及鲁棒性。遗传算法属于直接搜索法,对适应函数基本无限制,既不要求连续,也不要求函数可微,而且不需要初始信息可以寻求全局最优解克服了单纯形算法初始条件影响大,易陷入局部最小等缺点,操作方便,速度快,不需要复杂的规则,且可用于多目标寻优,在解空间进行高效启发式搜索,可以提高运算速度。-The genetic algorithm is one simulation o
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-31
    • 文件大小:3072
    • 提供者:大同小异
  1. sudoku

    0下载:
  2. 采用启发式搜索算法,能解任意合法的数独(由input.txt文件输入),还能自动生成唯一解的数独初局-Using heuristic search algorithm, to obtain any number of legal independence (from the input.txt file input), can automatically generate a unique solution of the early S
  3. 所属分类:其他智力游戏

    • 发布日期:2024-05-31
    • 文件大小:4096
    • 提供者:王加福
  1. tabu

    0下载:
  2. 禁忌搜索法对初始解、邻域个数及禁忌列表的大小等参数有比较严格的要求, 这些参数直接影响着算法的优化能力。文章提出了一种改进的禁忌搜索法, 它用有效空间来压缩搜索范围, 这样可以提高搜索效率和全局搜索能力。用短期和长期禁忌列表存储器来保证算法能搜索到全和分局空间的每一点, 并且不重复搜索。经过验算析, 证明它是一种较好的全局启发式搜索法.-Tabu search method, the initial solution, neighbor
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-31
    • 文件大小:475136
    • 提供者:logspace
  1. Ant_clusting

    1下载:
  2. 蚁群聚类算法及其源码。是蚁群算法跟聚类算法的结合,启发式搜索社团结构。-Ant colony clustering algorithm and its source code. Ant colony algorithm with the clustering algorithm is a combination of heuristic search community structure.
  3. 所属分类:matlab例程

    • 发布日期:2024-05-31
    • 文件大小:3072
    • 提供者:刘长棕
  1. MCproblem

    0下载:
  2. 人工智能解决野人传教士本实验研究了用人工智能的理论求解传教士(Missionaries)与野人(Cannibals)过河问题(M-C问题)。实验设计采用产生式系统的概念,将问题用状态空间表示,搜索技术采用状态空间启发式搜索的A*算法,规则设计采用产生式规则,用C语言实现了A*算法求解M-C问题,加深了对人工智能的认识与理解。过河问题。-Of artificial intelligence to solve Savage missiona
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-31
    • 文件大小:3072
    • 提供者:杨雨
  1. A-star

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

    • 发布日期:2024-05-31
    • 文件大小:403456
    • 提供者:赵鹏
  1. TheStudyofAAlgorithminImplementingofGame

    0下载:
  2. 图搜索技术能够从图中寻找一条从起点到目标点的路径. 围绕游戏寻径问题,介绍了如何确定启发式函数进行启发式搜索,并把A*算法用程序加以实现,从而证明A*算法可以解决游戏中的寻径问题-Map search technology to search from a map to the target point from the starting point of the path. Around the game routing proble
  3. 所属分类:软件工程

    • 发布日期:2024-05-31
    • 文件大小:180224
    • 提供者:娜娜
  1. matlabyiqunsuanfa

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

    • 发布日期:2024-05-31
    • 文件大小:3072
    • 提供者:prince
  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
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-31
    • 文件大小:38912
    • 提供者:徐晓涛
  1. 8shuma

    0下载:
  2. 使用启发式搜索A*算法求解8数码问题,内附代码,执行程序及输入文件-8 A* algorithm to solve the problem of digital
  3. 所属分类:其他小程序

    • 发布日期:2024-05-31
    • 文件大小:26624
    • 提供者:found440
  1. 启发式搜索A算法

    0下载:
  2. 启发式搜索的定义、估价函数和算法过程,并利用A*算法求解N数码难题,理解求解流程和搜索顺序(The definition, evaluation function and algorithm process of heuristic search, and A* algorithm is used to solve the N digital puzzle, and the solution flow and search order
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-31
    • 文件大小:214016
    • 提供者:anbao
« 12 3 4 5 6 »

源码中国 www.ymcn.org