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

搜索资源列表

  1. 0_1beibao

    0下载:
  2. 分别用回溯法和动态规划解决0-1背包问题,输出装入背包的顺序-Backtracking and dynamic programming to solve the 0-1 knapsack problem, the order in which the output is loaded backpack
  3. 所属分类:Other systems

    • 发布日期:2017-12-01
    • 文件大小:1400
    • 提供者:赵瑾
  1. knap-error

    0下载:
  2. 利用回溯法解决0-1背包问题,希望对于开始学习算法的同学有所帮助-Backtracking to solve 0-1 knapsack problem, I hope to help students start learning algorithm
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-22
    • 文件大小:885
    • 提供者:wangxuejun
  1. huisu

    0下载:
  2. 0-1背包问题的回溯算法,算法分析与设计-0-1 knapsack problem backtracking algorithm, algorithm analysis and design
  3. 所属分类:Data structs

    • 发布日期:2017-11-14
    • 文件大小:1018
    • 提供者:方方
  1. 01dongtaiguihua

    0下载:
  2. 0-1背包问题的动态规划算法,算法分析与设计-0-1 knapsack problem dynamic programming algorithm, algorithm analysis and design
  3. 所属分类:Data structs

    • 发布日期:2017-11-16
    • 文件大小:1037
    • 提供者:方方
  1. 01tanxin

    0下载:
  2. 0-1背包问题的贪心算法,算法分析与设计-0-1 knapsack problem of the greedy algorithm, algorithm analysis and design
  3. 所属分类:Data structs

    • 发布日期:2017-12-09
    • 文件大小:870
    • 提供者:方方
  1. backpack

    0下载:
  2. 动态规划实现0-1背包问题和贪心法实现背包问题-Dynamic programming to realize knapsack problem and greedy method to realize knapsack problem
  3. 所属分类:Data structs

    • 发布日期:2017-12-03
    • 文件大小:2641
    • 提供者:尹建
  1. 12-01bag

    0下载:
  2. 01背包问题 问题陈述:给定n种物品和一背包,物品i的重量是wi,其价值为vi,背包的容量为C。合理选择物品装入背包,使得装入背包中物品的总价值最大。在选择装入背包的物品时,对每种物品i只有两种选择,即装入背包或不装入背包。不能将物品i装入背包多次,也不能只装入部分的物品i。 问题分析:0 1背包问题是一个子集选取问题,适合于用子集树表示0 1背包问题的解空间。在搜索解空间树时,只要其左儿子结点是一个可行结点,搜索就进入左子树,在右子树中有可能包含最优解时才进入右子树搜索;否则将右子树
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-19
    • 文件大小:312882
    • 提供者:Kahn
  1. Knapsack

    0下载:
  2. 0-1背包问题 此算法包含了输入界面,可以随意设置货物的数量和价值。-0-1 knapsack problem algorithm includes the input interface, the number and value of the goods can be arbitrarily set.
  3. 所属分类:Java Develop

    • 发布日期:2017-12-03
    • 文件大小:641
    • 提供者:郑浩
  1. jicha

    0下载:
  2. 解决1-1背包问题的最简便的解法可以有里面这一种提供出来-The easiest solution to solve the 1-1 knapsack problem can be inside this kind of out
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-20
    • 文件大小:318818
    • 提供者:解南
  1. beibao22

    0下载:
  2. 0.1背包问题有多种揭发,这应该是最简单的一种,很容易的写法-Variety expose of 0.1 knapsack problem, which should be the most simple, it is easy wording
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-12-10
    • 文件大小:1432
    • 提供者:解南
  1. stressen

    0下载:
  2. 解决1-1背包问题的最简便的解法可以有里面这一种提供出来-The easiest solution to solve the 1-1 knapsack problem can be inside this kind of out
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-30
    • 文件大小:180462
    • 提供者:解南
  1. SAPSO

    0下载:
  2. 0-1背包问题是学习算法时一个非常常用的简单问题,可以用多种智能优化算法实现,这里用到了蚁群算法和模拟退火算法还有两种方法的结合三种方法来实现。-0-1 knapsack problem is a simple learning algorithm is a very common problem, and can use a variety of intelligent optimization algorithm, ant colony algorithm and simulated ann
  3. 所属分类:matlab

    • 发布日期:2017-12-03
    • 文件大小:27085
    • 提供者:陈紫熙
  1. daima

    0下载:
  2. 动态规划,贪心算法和回溯解决0-1背包问题-Dynamic programming, greedy algorithms and backtracking to solve 0-1 knapsack problem
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-10
    • 文件大小:2685
    • 提供者:庞浩
  1. 1

    0下载:
  2. C语言使用回溯法实现背包问题,控制台程序。-C language knapsack problem using backtracking
  3. 所属分类:CSharp

    • 发布日期:2017-11-19
    • 文件大小:611
    • 提供者:王帅
  1. solution-of-knapsack-problem

    0下载:
  2. 回溯法、分支限界法的原理,并能够按其原理编程实现解决0-1背包问题,以加深对回溯法、分支限界法的理解。 -Backtracking, branch and bound method principle, and can according to the principle of programming to realize solving knapsack problem, in order to deepen our understanding of the backtracking, bra
  3. 所属分类:Java Develop

    • 发布日期:2017-11-13
    • 文件大小:90598
    • 提供者:
  1. ConsoleApplication1

    0下载:
  2. 0,1背包问题的C#代码实现,供学习算法使用-0,1 knapsack problem C# code to achieve for the use of the learning algorithm
  3. 所属分类:CSharp

    • 发布日期:2017-12-05
    • 文件大小:34639
    • 提供者:haochen
  1. 0-1packets

    0下载:
  2. 一个算法的实现:使用分支界限法求解0-1背包问题-The realization of an algorithm: 0-1 knapsack problem using the branch and bound method
  3. 所属分类:Other systems

    • 发布日期:2017-12-06
    • 文件大小:2187
    • 提供者:bao
  1. 01-backpack

    0下载:
  2. ACM算法问题:0-1背包问题。此代码用vc++b编写。-ACM algorithm problem :0-1 of the knapsack problem. Write this code vc++b.
  3. 所属分类:Data structs

    • 发布日期:2017-12-04
    • 文件大小:526438
    • 提供者:随波
  1. 0-1bag

    0下载:
  2. 算法课程中的经典案例 0-1背包问题 采用动态规划思想解决-A classic case of the algorithm courses 0-1 knapsack problem using dynamic programming to solve
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-26
    • 文件大小:1122
    • 提供者:马丙展
  1. 0-1beibaowenti

    0下载:
  2. 用C++编的关于0-1背包问题的源程序,程序可以运行-Source on the 0-1 knapsack problem compiled C++ used, the program can run
  3. 所属分类:Other systems

    • 发布日期:2017-12-02
    • 文件大小:10728
    • 提供者:严晨
« 1 2 ... 12 13 14 15 16 1718 19 20 21 22 ... 26 »
搜珍网 www.dssz.com