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

搜索资源列表

  1. 最短路径(Dijkstra算法)

    0下载:
  2. 已知两点,求该两地那间的最短路径,注意与TSP有区别。(When two points are known, the shortest path between the two places is considered, noting that there is a difference between TSP and the other.)
  3. 所属分类:matlab例程

    • 发布日期:2017-12-26
    • 文件大小:1024
    • 提供者:USSThobo2
  1. 算法谜题[完整版].pdf

    0下载:
  2. 练习算法的比较好的参考书,里面有代码示例(Practice algorithm is a good reference book, there are code examples)
  3. 所属分类:文章/文档

    • 发布日期:2017-12-25
    • 文件大小:30962688
    • 提供者:茶圣
  1. 多目标遗传算法程序

    1下载:
  2. 对目标优化,多目标遗传算法(把度目标转化为单目标求解)源程序(Matlab multi-objective genetic optimization algorithm(to convert the degree target to a single target solution) source program)
  3. 所属分类:matlab例程

    • 发布日期:2017-12-27
    • 文件大小:110592
    • 提供者:上古波波
  1. 改变未来的九大算法

    1下载:
  2. 比较详细的介绍了各种算法,是学习以及了解未来算法发展方向的好书,值得好好看看(More detailed descr iption of the various algorithms, is to learn and understand the future direction of the development of the algorithm books, it is worth a good look)
  3. 所属分类:其他

    • 发布日期:2017-12-28
    • 文件大小:25538560
    • 提供者:armyzhang
  1. Boykov的GraphCut算法

    0下载:
  2. Boykov的GraphCut算法 Graph cuts是一种十分有用和流行的能量优化算法,在计算机视觉领域普遍应用于前背景分割(Image segmentation)、立体视觉(stereo vision)、抠图(Image matting)等。(Boykov GraphCut As applied in the field of computer vision, graph cuts can be employed to efficiently solve a wide var
  3. 所属分类:图形图象

    • 发布日期:2017-12-26
    • 文件大小:67584
    • 提供者:sudohello
  1. des加解密算法delphi10.1编译通过

    1下载:
  2. des加密算法,delphi10.1编译通过,就两个函数,一个加密一个解密,操作简单(DES encryption algorithm, delphi10.1 compiler through, on the two functions, an encryption, a decryption, simple operation)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-31
    • 文件大小:2342912
    • 提供者:大的兔子
  1. 常用数值算法--C语言

    0下载:
  2. 多种数值计算方法,的c语言实现。好使,没有问题(A variety of numerical methods, C language implementation. OK, no problem)
  3. 所属分类:Windows编程

  1. 用MATLAB实现遗传算法程序.pdf

    1下载:
  2. 遗传算法的基本步骤如下: 1)在一定编码方案下,随机产生一个初始种群; 2)用相应的解码方法,将编码后的个体转换成问 题空间的决策变量,并求得个体的适应值; 3)按照个体适应值的大小,从种群中选出适应值 较大的一些个体构成交配池; 4)由交叉和变异这两个遗传算子对交配池中的 个体进行操作,并形成新一代的种群; 5)反复执行步骤2-4,直至满足收敛判据为止。(The basic steps of the genetic algorithm are as follows: 1) u
  3. 所属分类:matlab例程

    • 发布日期:2017-12-23
    • 文件大小:76800
    • 提供者:傲视天下
  1. 免疫优化算法在物流配送中心选址中的应用

    1下载:
  2. 免疫算法是受生物免疫系统的启发而推出的一种新型的智能搜索算法,是一种确定性和随机性选择相结合并具有"勘探"与"开采"能力的启发式随机搜索算法。 算法主要的步骤: (1)抗原识别与初始抗体产生。 (2)抗体评价 (3)免疫操作 免疫算法的特点: (1)全局搜索能力 (2)多样性保持机制 (3)鲁棒性强 (4)并行分布式搜索机制(A new intelligent i
  3. 所属分类:matlab例程

    • 发布日期:2017-12-25
    • 文件大小:27648
    • 提供者:傲视天下
  1. 基于联邦滤波器的新型故障检测结构及算法

    0下载:
  2. 基于联邦滤波器的新型故障检测结构及算法,一种新型Kalman算法。(A new structure and algorithm of fault detection based on federated filter, a new Kalman algorithm.)
  3. 所属分类:其他

    • 发布日期:2017-12-29
    • 文件大小:328704
    • 提供者:Efeir
  1. GA遗传算法

    0下载:
  2. 遗传算法(Genetic Algorithm)是模拟达尔文的遗传选择和自然淘汰的生物进化过程的计算模型,是一种通过模拟自然进化过程搜索最优解的方法,它是有美国Michigan大学J.Holland教授于1975年首先提出来的,并出版了颇有影响的专著《Adaptation in Natural and Artificial Systems》。(The genetic algorithm (Genetic Algorithm) is a computational model for the sim
  3. 所属分类:数值算法/人工智能

    • 发布日期:2017-12-29
    • 文件大小:8192
    • 提供者:sherria
  1. 最小生成树之kruskal算法

    0下载:
  2. 最小生成树之kruskal算法的概念及其实现 kruskal算法的精髓在于: 每次选取一条边。 该边同时满足:1、在当前未选边中权值最小;2、与已选边不构成回路。 直到选取n-1条表是算法结束。找到MST活判断不存在MST。(The concept and implementation of Kruskal algorithm for minimum spanning tree The essence of Kruskal algorithm lies in: Select one
  3. 所属分类:其他

    • 发布日期:2017-12-30
    • 文件大小:11264
    • 提供者:cuihuiling
  1. 算法调度实验

    0下载:
  2. 先来先服务 第一个进入输入井的作业先执行,那么该作业就有一个执行结束的时间,那么在该作业运行时间内,满足时间条件的作业进入输入井,然后根据前一个作业的运行结束的时间推算和下一个作业要进入输入井的时间推算下一个作业时间开始运行的时间: Time = max(curendtime,nextstarttime);这样后作业运行的开始时间就计算出来了, 那么加上一个运行长度就是该作业的结束时间,周转时间即为结束时间减去进入输入井的时间(first come first served T
  3. 所属分类:操作系统开发

    • 发布日期:2017-12-27
    • 文件大小:507904
    • 提供者:允儿pova
  1. labview中实现聚类算法

    1下载:
  2. labview中实现聚类算法的经典案例,由NI LAB编写,不但有程序,还有说明文档(LabVIEW clustering algorithm to achieve a classic case, written by NI LAB, not only procedures, as well as documentation)
  3. 所属分类:其他

    • 发布日期:2017-12-25
    • 文件大小:741376
    • 提供者:csg
  1. 权重改进的粒子群算法

    0下载:
  2. 用于车辆参数最优选取,求取目标函数最大、最小值,对非线性、多峰问题均具有较强的全局搜索能力(It is used for the optimal selection of vehicle parameters, and the maximum and minimum values of the objective function are obtained. It has a strong global search ability for nonlinear and multimodal pr
  3. 所属分类:matlab例程

    • 发布日期:2017-12-31
    • 文件大小:1024
    • 提供者:淡漠胡烟
  1. 简单函数优化的遗传算法程序

    0下载:
  2. 遗传算法的简单应用,可以参考看看学习一下(any one who is intereted in this field can have a look into the file and learn basic data)
  3. 所属分类:matlab例程

    • 发布日期:2017-12-31
    • 文件大小:5120
    • 提供者:ulaula
  1. 模拟退火算法

    1下载:
  2. 此问题为传统的TSP问题,从一个城市出发,到达目的地,所用算法为模拟退火算法,算法可以完美运行。(This problem is a traditional TSP problem, starting from a city, reaching the destination, the algorithm is simulated annealing algorithm, the algorithm can run perfectly.)
  3. 所属分类:人工智能/神经网络/深度学习

    • 发布日期:2017-12-31
    • 文件大小:4096
    • 提供者:smoonlighter
  1. 遗传算法实例

    0下载:
  2. 也是自己找来的,原代码有少许错误,本人都已更正了,调试运行都通过了的。 对于初学者,尤其是还没有编程经验的非常有用的一个文件 遗传算法实例(Also find their own, the original code has a little error, I have corrected, debugging run through.A very useful file for beginners, especially for those who have no programming
  3. 所属分类:matlab例程

    • 发布日期:2017-12-31
    • 文件大小:3072
    • 提供者:BBLooper
  1. 遗传算法&雷达手册

    0下载:
  2. 遗传算法 本部分主要为了了解遗传算法的应用,选择一个复杂的二维函数来进行遗传算法优化。函数显示为y=10*sin(5*x)+7*abs(x-5)+10, 另附上雷达手册(genetic algorithm This part is mainly to understand the application of genetic algorithm, select a complex two-dimensional function to optimize genetic al
  3. 所属分类:其他

  1. 蚁群算法Matlab程序

    2下载:
  2. 求解VRP问题,实用的蚁群算法matlab程序(To solve the VRP problem, a practical ant colony algorithm matlab program)
  3. 所属分类:其他

    • 发布日期:2017-12-31
    • 文件大小:16384
    • 提供者:flyever98
« 1 2 ... 8 9 10 11 12 1314 15 16 17 18 ... 50 »
搜珍网 www.dssz.com