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

搜索资源列表

  1. thesis2000_fangqi

    0下载:
  2. 算法分析和设计的主要原理,动态规划 贪心算法 背包问题的实例-algorithm analysis and design of the main principle of dynamic programming greedy algorithm examples knapsack problem
  3. 所属分类:PropertySheet

    • 发布日期:2008-10-13
    • 文件大小:69562
    • 提供者:望水
  1. 0-1背包问题

    0下载:
  2. 该程序用贪心算法来求解0-1背包问题 采用贪婪准则:每次选择p/w最大的物品放入背包。-procedures with the greedy algorithm to solve 0-1 knapsack problem using greed criteria : Each choice p / w largest goods Add backpack.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:2195
    • 提供者:杨晨
  1. 贪心算法背包问题

    0下载:
  2. 这个小程序,是我作为C#初学者的省份写出来,主要是练手的。主要是在算中的一种思想。环境VS2010,传于2010-10-31,地点安徽马鞍山某高校
  3. 所属分类:其它程序

    • 发布日期:2010-10-31
    • 文件大小:51235
    • 提供者:zzhjhu@yeah.net
  1. 贪心遗传算法求解背包问题

    0下载:
  2. 把贪心算法和遗传算法相结合,从而得出对NP难题的背包问题进行优化求解。
  3. 所属分类:源码下载

  1. 背包问题的贪心算法

    0下载:
  2. 背包问题的贪心算法
  3. 所属分类:源码下载

  1. 0-1

    0下载:
  2. 0-1背包问题的贪心算法 希望对大家有帮助-0-1 knapsack problem the greedy algorithm would like to help everyone
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:5829
    • 提供者:林龙
  1. beibao

    0下载:
  2. 通过贪心算法实现背包问题,可实现小规模背包问题-Through the greedy algorithm knapsack problem, enabling small-scale knapsack problem
  3. 所属分类:Console

    • 发布日期:2017-04-01
    • 文件大小:9860
    • 提供者:piaoxue
  1. bag

    1下载:
  2. 用Visual C++编写的程序,利用贪心算法实现背包问题-Using Visual C++ to prepare the procedures for implementation the use of greedy algorithm knapsack problem
  3. 所属分类:.net编程

    • 发布日期:2013-06-23
    • 文件大小:149707
    • 提供者:hilings
  1. yuandaima

    0下载:
  2. 一般背包问题的贪心算法 Dijkstra算法求解单源最短路径问题 N皇后问题 Prim算法 Kruskal算法代码-The general knapsack problem greedy algorithm Dijkstra' s algorithm for single-source shortest path algorithm N Queen' s problem Kruskal Algorithm Prim code
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:7352
    • 提供者:liujuan
  1. KITBAG

    0下载:
  2. 背包问题是用贪心算法得到最优解得一个典型问题。背包问题具有最优子结构性质首先通过快速排序算法对物品按照单价从大到小排序,然后进行贪心选择。-Knapsack problem is a greedy algorithm with the optimal solution may be a typical problem. Knapsack problem with the nature of the optimal sub-structure, first of all, quick sort a
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:695
    • 提供者:workfuture
  1. 01pack

    0下载:
  2. 用动态规划,贪心算法等算法实现01背包问题-Using dynamic programming, greedy algorithm knapsack problem algorithm 01
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:164630
    • 提供者:ufo
  1. bags

    0下载:
  2. 四种算法(动态规划、回溯法、分支限界法、贪心法)实现0-1背包问题-four algorithms including dynamic planningm,tracing,branch and bound method and greedy to implement 0-1 bag problem.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-23
    • 文件大小:7199463
    • 提供者:王赛
  1. sffx

    0下载:
  2. 算法分析实验 包含背包算法,硬币问题,贪心算法-Algorithm analysis experiments including knapsack algorithm, coins, greedy algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:109390
    • 提供者:赵当
  1. thegreedyalgorithmusinggeneticalgorithmssolveknaps

    0下载:
  2. 详细的讲述了贪心算法和遗传算法相结合去求解NP难题,背包问题。-Greedy algorithm described in detail and the combination of genetic algorithms to solve the NP problem, knapsack problem.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-02
    • 文件大小:2890
    • 提供者:liulei
  1. 25142

    0下载:
  2. 贪心算法-背包问题贪 心算法-背包问题-Greedy algorithm- greedy algorithm knapsack problem- Knapsack Problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:11122
    • 提供者:
  1. TSPandBAGproblem

    0下载:
  2. 包里包含五个文件,其中ASforTSP是用蚂蚁算法解决TSP问题,Backtrack是用回溯法解决01背包问题,GAO是用遗传算法解决TSP,GreedySelector是用贪心算法解决01背包问题,MoneyChange是金额的数字与汉字的转换方案,本人作为一个学生初学编程,希望多多包涵。-Package contains five files, which ASforTSP ant algorithm to solve TSP is the problem, Backtrack 01 is
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-07
    • 文件大小:9925
    • 提供者:梦幻
  1. Greedy-Algorithm

    0下载:
  2. 数据结构(java版)第三版的贪心算法背包问题源码程序-Greedy Algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-05-05
    • 文件大小:6299
    • 提供者:ttf
  1. 贪心算法背包问题

    0下载:
  2. 一个简单贪心算法的研究,背包问题,供大家浏览参考。(A simple greedy algorithm research, knapsack problem, reference for browsing.)
  3. 所属分类:其他

    • 发布日期:2018-01-05
    • 文件大小:1024
    • 提供者:CJPYXS
  1. 背包问题

    0下载:
  2. 贪心算法解决背包问题:给定n种物品和一个背包。物品i的重量是Wi,其价值为Vi,背包的容量为C。应如何选择装入背包的物品,使得装入背包中物品的总价值最大?(The greedy algorithm solves the knapsack problem: a given n item and a backpack. The weight of the item I is Wi, its value is Vi, and the capacity of the knapsack is C. How
  3. 所属分类:其他

    • 发布日期:2018-01-10
    • 文件大小:91136
    • 提供者:wj456jw
  1. 贪心算法-局部背包

    0下载:
  2. 使用java语言实现贪心算法中的局部背包问题,适合正在学习这方面算法的人使用。(The Java language is used to implement the local knapsack problem in the greedy algorithm, which is suitable for people who are learning this algorithm.)
  3. 所属分类:Windows编程

    • 发布日期:2018-04-23
    • 文件大小:4377600
    • 提供者:歪猴
« 12 3 4 5 6 »
搜珍网 www.dssz.com