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

搜索资源列表

  1. 01bag

    0下载:
  2. 经常遇到01背包的问题我在这里向大家提供该算法实现的具体过程-01 backpack often encountered the problem I am here to provide you with the algorithm to achieve the specific process
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:834
    • 提供者:张三华
  1. 01bag

    0下载:
  2. 01背包问题c语言实现 01背包问题c语言实现
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:1060
    • 提供者:dawn
  1. 01bag

    0下载:
  2. 用回溯方法写的01背包问题,有中文注释,很容易懂!-Methods used to write back the 01 knapsack problem, a Chinese note, it is easy to understand!
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-05-03
    • 文件大小:898939
    • 提供者:吴男
  1. 01bag

    0下载:
  2. 01背包问题最简单实现,可在其上做更多的扩展,不知道可否不用递归用堆栈-01 knapsack problem to achieve the most simple, can do more in its expansion, I do not know can not use recursive stack
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:7609
    • 提供者:刘建林
  1. Bag0_1

    0下载:
  2. 01背包 用C++编写的,还需大家指点 呵呵呆-01bag
  3. 所属分类:Other systems

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

    0下载:
  2. 使用动态规划方法解决01背包问题 比较简单的程序 -Using dynamic programming solution to 01 knapsack problem relatively simple procedure
  3. 所属分类:Data structs

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

    0下载:
  2. 用蛮力法,回溯法,分支限界法求解背包问题-With the brute force method, backtracking, branch and bound method for solving knapsack problem
  3. 所属分类:Other systems

    • 发布日期:2017-05-06
    • 文件大小:1052397
    • 提供者:hehuiling
  1. 01bag

    0下载:
  2. 0-1背包问题算法,采用动态规划思想实现。-the Algorithm of 0-1bag problem,it is implemented with Dynamic programming.
  3. 所属分类:Data structs

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

    0下载:
  2. 实现经典0-1背包问题,采用动态规划、分枝限界、回溯法、贪心算法等四个算法分别实现0-1背包问题,并有一个四合一的算法统一用四种方法实现。并对其时间复杂度进行了分析。-To achieve the classic 0-1 knapsack problem, dynamic programming, branch and bound, backtracking, greedy algorithm to achieve the four algorithms are 0-1 knapsack pro
  3. 所属分类:Data structs

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

    0下载:
  2. 0-1背包问题,采用了动态规划的算法,输入物品的重量和价值,以及背包的容量,计算出最优解-0-1 knapsack problem, using a dynamic programming algorithm ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:590
    • 提供者:陈昕昀
  1. 01bag

    0下载:
  2. 01背包问题:从这n件物品中选择若干件放入此背包,使得放入的重量之和正好为S。-01 knapsack problem: n items selected from a number of pieces into the bag, so just put the weight of the sum of S.
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:588
    • 提供者:Mr Xu
  1. 01bag

    0下载:
  2. 动态规划经典问题01背包的实现,用2种实现算法。一是用递归,二是用循环。还有01背包算法的叙述和图解,通俗易懂-Dynamic programming 01bag
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:37664
    • 提供者:sx
  1. 0_1bag

    0下载:
  2. 01背包问题,用最简单的算法解决了01背包问题-01bag question
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:526
    • 提供者:小五
  1. 01bag-AGL

    0下载:
  2. 01背包问题基础代码,在各大oj上有相似题目-01 knapsack problem underlying code
  3. 所属分类:Data structs

    • 发布日期:2017-11-12
    • 文件大小:417151
    • 提供者:杨伟健
  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. 01bag

    0下载:
  2. 01 背包问题,c语言实现,计算机算法分析实习,使用的回溯法-01 knapsack problem, the C language, the computer algorithm analysis internship backtracking
  3. 所属分类:Data structs

    • 发布日期:2017-11-22
    • 文件大小:893433
    • 提供者:yangyu
  1. 01bag

    0下载:
  2. 0/1背包问题,分置限界优先队列解决,C++实现。-0/1 knapsack problem, split and bound priority queue solve, C++ implementation.
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-10
    • 文件大小:1532
    • 提供者:ZR
  1. 01bag

    0下载:
  2. 用动态规划算法所编写是01背包问题的实现,能在ACM平台上通过-Prepared by using dynamic programming algorithm implementation is 01 knapsack problem, in ACM Platforms
  3. 所属分类:source in ebook

    • 发布日期:2017-04-09
    • 文件大小:555
    • 提供者:刘毅轩
搜珍网 www.dssz.com