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

搜索资源列表

  1. featureselect_FW_fast

    0下载:
  2. 新基于邻域粗糙集的前向贪心的属性约简算法-New neighborhood-based forward greedy rough set attribute reduction algorithm
  3. 所属分类:matlab

    • 发布日期:2017-05-20
    • 文件大小:5884737
    • 提供者:jzxcjzxc
  1. com

    0下载:
  2. 计算机算法与设计各种源码计算机算法与设计各种源码贪心 动态规划-compute source compute source compute sourcecompute sourcecompute sourcecompute source
  3. 所属分类:Data structs

    • 发布日期:2017-05-06
    • 文件大小:1339265
    • 提供者:zhang yupei
  1. greed-bag

    0下载:
  2. 一个贪心背包的小程序可以在VC下运行,可作为算法学习参考- a greed bag algorithm implementation can run in VC
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:898989
    • 提供者:shine
  1. 6

    0下载:
  2. 贪心法解活动安排问题(计算机算法设计与分析)实验报告-Greedy method for solving activities arrangements ( computer algorithm design and analysis )
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:49359
    • 提供者:江军然
  1. algorithm_report

    0下载:
  2. 算法设计报告5个重要算法,包括贪心,回溯,动态规划,分支限界,分治法-Algorithm design report five algorithms, including greedy, backtracking, dynamic programming, branch and bound, divide and conquer
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-17
    • 文件大小:52154
    • 提供者:warton
  1. gas

    0下载:
  2. 给定了n和k个加油站的位置,汽车加满油后可行驶n公里,指出应在哪些加油站停靠,使得加油次数最少,贪心选择算法-Can travel to the location given n and k gas stations, auto fill up n kilometers that should be docked in which gas stations, making refueling the least number of greedy selection algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:353399
    • 提供者:杨一
  1. Algorithm-analysis-and-design

    0下载:
  2. 计算机实验室 内容: 1、分治法,maxmin算法 2、动态规划,矩阵连乘 3、贪心法, 1)背包问题,2)装载问题 4、回溯法,N皇后问题的循环结构算法和递归结构算法。-Computer laboratory content: 1, partition method, maxmin algorithm 2, the dynamic planning, LianCheng matrix 3, greedy method, 1) knapsack probl
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:4226
    • 提供者:王越瑾
  1. GreedyAlgorithms

    0下载:
  2. 贪心法实现背包问题,运用枚举法实现,根据结果分析该算法的贪心性质-The greedy method knapsack problem, using the enumeration method to achieve, based on the results of analysis of the greedy nature of the algorithm
  3. 所属分类:Java Develop

    • 发布日期:2017-04-11
    • 文件大小:920
    • 提供者:lj
  1. duanyuanlujin

    0下载:
  2. 计算机算法分析师习题,单源最短路径问题,使用的是贪心选择算法实现,通过调试,c言语实现-The the computer algorithms analyst exercises, single source shortest path problem, use greedy selection algorithm implementation, through debugging, c speech achieve
  3. 所属分类:Data structs

    • 发布日期:2017-11-20
    • 文件大小:882908
    • 提供者:yangyu
  1. Loading

    0下载:
  2. 使用贪心法(首先装载最轻的集装箱)实现最优装载算法。-Use the greedy method (first load containers lightest) to achieve optimal loading algorithm.
  3. 所属分类:Other systems

    • 发布日期:2017-11-24
    • 文件大小:6935
    • 提供者:Vivian Yo
  1. Kruskal-Code

    0下载:
  2. Kruskal算法是算法中的重点。。贪心方法可以很好地求解最小生成树。-Kruskalcode is a important arithmetic.
  3. 所属分类:source in ebook

    • 发布日期:2017-11-09
    • 文件大小:3666
    • 提供者:李青
  1. ACMsuanFaDaQuan

    0下载:
  2. acm算法大全,常用的有代表性的经典题,旅行者预算(动态&&贪心)等等59道题-acm algorithm Guinness, the common representative of the classic title, travelers budget (dynamic & & greedy) 59 questions
  3. 所属分类:Data structs

    • 发布日期:2017-11-26
    • 文件大小:157468
    • 提供者:sum
  1. SUANFAPPT

    0下载:
  2. 常用的算法设计策略(包括分治策略、动态规划、贪心策略、回溯法、随机算法等) 算法复杂度分析方法(计算迭代次数、使用递归方程、频度分析等) -Commonly used algorithm design strategies (including the strategy of divide and conquer, dynamic programming, greedy strategy, backtracking method, random algorithm) algorithm
  3. 所属分类:software engineering

    • 发布日期:2017-12-07
    • 文件大小:3316958
    • 提供者:lm
  1. suanfa

    0下载:
  2. 算法程序与设计试验中的经典算法的源代码:像是分治递归,贪心,回溯等。-Algorithm design test of the classical algorithm source code: such as divide and conquer recursion, greedy, backtracking.
  3. 所属分类:source in ebook

    • 发布日期:2017-12-02
    • 文件大小:645308
    • 提供者:qinqin
  1. The-shortest-path

    1下载:
  2. 用贪心法和动态规划两种算法求解有向图任意两个节点之间的最短路径,要求给出最短路径的值以及中间路径。-Greedy method and dynamic programming algorithm to solve the two have to figure the shortest path between any two nodes, required to give the value of the shortest path and the middle path.
  3. 所属分类:CSharp

    • 发布日期:2017-04-07
    • 文件大小:1992
    • 提供者:张鹏飞
  1. Templates-and-pku-code

    0下载:
  2. 学习ACM的基本算法,包括动态规划,DP,贪心,等等。-ACM learn basic algorithms, including dynamic programming, DP, greedy, and so on.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:369070
    • 提供者:耿新
  1. classical-algorithms

    0下载:
  2. 许多经典算法问题的源代码,包括数据结构,分治,回溯,动态规划,图论,贪心等等,包括了C,C++和Java代码,已分成文件夹整理好.-Many classical algorithms of the source code, including data structures, divide and conquer, backtracking, dynamic programming, graph theory, greed, etc., including C, C++ and Java cod
  3. 所属分类:source in ebook

    • 发布日期:2017-04-17
    • 文件大小:101713
    • 提供者:AIr
  1. 2008

    0下载:
  2. 国家集训队2008论文集 Day1 1.曹钦翔《数据结构的提炼与压缩》 2.郑暾《平衡规划——浅析一类平衡思想的应用》 3.刘弈《浅谈信息学中状态的合理设计与应用》 4.顾研《浅谈随机化思想在几何问题中的应用》 5.周梦宇《码之道——浅谈信息学竞赛中的编码与译码问题》 6.肖汉骏《例谈信息学竞赛分析中的“深”与“广”》 7.方戈《浅析信息学竞赛中一类与物理有关的问题》 8.吕子鉷《浅谈最短径路问题中的分层思想》 9.周小博《浅谈信息学竞赛中的区间问题》
  3. 所属分类:Data structs

    • 发布日期:2017-06-08
    • 文件大小:15473442
    • 提供者:sxy
  1. tanxinwenti

    0下载:
  2. 各种贪心策略情况下的背包问题的算法并实现;其中:量度标准分别取:效益增量P、物品重量w、P/w比值-Various greedy strategy in case the knapsack problem and implement algorithms wherein: a measure were taken: the incremental benefits of P, articles weight w, P/w ratio
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:530258
    • 提供者:文一
  1. java_hanno

    0下载:
  2. java_hanno,java汉诺贪心九宫格算法集合,介绍各种经典算法,包含源代码-java_hanno, java Hanno squared greedy algorithm set to introduce a variety of classic algorithms, including source code
  3. 所属分类:Jsp/Servlet

    • 发布日期:2017-04-14
    • 文件大小:4448
    • 提供者:linpeitao
« 1 2 ... 29 30 31 32 33 3435 »
搜珍网 www.dssz.com