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

搜索资源列表

  1. C

    1下载:
  2. 本文档容括了C(C++)所有算法,分为数值算法、图论算法、背包算法、排序算法、高精度算法、树的遍历、进制转换、全排列和组合生成、查找算法、贪心、回溯法框架、DFS框架、BFS框架、数据结构相关算法。并有实例源码-This document, including the capacity C (C ) for all algorithms, divided into numerical algorithms, graph theory, algorithm, knapsack algorit
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:14.96kb
    • 提供者:海霞
  1. DataStructureAlgorithm

    1下载:
  2. 数据结构和算法,非常经典,讲的很详细!第一部分 基础知识 第一章 C++程序设计 第二章 程序性能 第二部分 数据结构 第三章 数据描述 第四章 数组和矩阵 第五章 堆栈 第六章 队列 第七章 跳表和散列 第八章 二叉树和其他树 第九章 优先队列 第十章 竞赛树 第十一章 搜索树 第十二章 图 第三部分 算法设计方法 第十三章 贪婪算法 第十四章 分而治之算法 第十五章 动态规划 第十六章 回
  3. 所属分类:Data structs

    • 发布日期:2016-08-26
    • 文件大小:16.43mb
    • 提供者:孙继磊
  1. 3230

    0下载:
  2. 带堆优化的贪心,从题意中我们可以得到的最暴力解法就是,每天都搜索整个数组,找出符合条件的题目并且它的经验是最大的,这样找M天就好了。接下来就是如何优化,在每次找的时候我们只要找经验最大的,因为可以用大顶堆组织可以做的题目,每次升级之后加入新的可以做的题目就OK了。-Optimized with a greedy heap, from the meaning of the questions, we can get the most violent solution is that every d
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:808byte
    • 提供者:ufo
  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
    • 文件大小:2.59kb
    • 提供者:prince
  1. park

    0下载:
  2. 是公园路径搜索的c++实现方法,功能比较简单,是课程设计的。用到了迪杰斯特拉算法和贪心算法求最短路径-Is a park path search c++ implementation method is relatively simple functions, curriculum design. Use the Dijkstra algorithm and the greedy algorithm for the shortest path
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:5.01kb
    • 提供者:Freedream
  1. classical-example-of-CaCPP

    0下载:
  2. 经典c/c++ 算法 图论算法 、数论算法、背包问题、排序进制转换算法、高精度计算、树的遍历、 全排列与组合的生成、查找算法、贪心算法等大全,word文档中-Classic c/c++ algorithm graph algorithms, number theory algorithms, knapsack problem, sort binary conversion algorithm, high-precision calculation, the tree traversal, all
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:13.88kb
    • 提供者:szl
  1. PKU_ACM_Code

    1下载:
  2. 北大ACM的代码,很经典的源代码 主流算法:搜索,动态规划,贪心,图论,数论,计算几何,组合数学,模拟,数据结构,博弈论  -ACM code of Beijing University, is the source code of the mainstream of classical algorithms: search, dynamic programming, greedy, graph theory, number theory, computational geometry,
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:169.83kb
    • 提供者:王振
  1. ten-algorithm

    1下载:
  2. 目录 1,搜索算法; 2,贪心算法; 3,动态规划; 4,最短路径; 5,最小生成树; 6,二分图的最大匹配; 7,-Contents 1, the search algorithm 2, the greedy algorithm 3, dynamic programming 4, the shortest path 5, the minimum spanning tree 6, maximum bipartite matching 7, ...
  3. 所属分类:Data structs

    • 发布日期:2017-05-06
    • 文件大小:1.03mb
    • 提供者:real
  1. OBST

    0下载:
  2. 尝试用贪心算法和动态规划算法构造最优二叉搜索树,并做基本统计分析和比较。结论是贪心算法不能保证构造出最优,也没有好的效率;动态规划明显更好。-Use greedy algorithm and dynamic programming to build optimal binary search tree. And related statistics and comparison are provided in report.
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:499.82kb
    • 提供者:李进
  1. 4.2

    0下载:
  2. 基于dijkstra和广度搜索的加权有向图有必经点的点对点的最短路径算法,路径必须经过要求的必经点,且不成环。 该算法采用了一种自适应调整的方法,经过多次迭代,使解收敛。 但只是寻找了一个略优的可行解(每次迭代都基于贪婪算法寻找),不能保证最优解。而且如果图过于稀疏,因为收敛速度过快,可能导致问题无解(收敛于一个局部最优解,没有经过所有点)。 解决相对稠密的图(每个点的平均出入度4以上),表现良好。 备注:里面有一个QT的工程,可以直接打开(源码里没用QT的库)-Weigh
  3. 所属分类:Data structs

    • 发布日期:2017-04-30
    • 文件大小:16.38kb
    • 提供者:凌凯
  1. Romania_Trip

    1下载:
  2. 罗马利亚度假问题 一. 问题描述 分别用代价一致的宽度优先、有限制的深度优先(预设搜索层次)、贪婪算法和A*算法求解“罗马利亚度假问题”。即找到从初始地点 Arad到 目的地点 Bucharest 的一条路径。 要求: 分别用文件存储地图和启发函数表,用生成节点数比较几种算法在问题求解时的效率,并列表给出结果。-Romania holiday issue I. problem descr iption Respectively, consistent with the c
  3. 所属分类:Data structs

    • 发布日期:2016-11-28
    • 文件大小:352kb
    • 提供者:chen
搜珍网 www.dssz.com