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

搜索资源列表

  1. 0-1

    0下载:
  2. 算法设计与分析:动态规划解决0-1背包问题
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:3909
    • 提供者:chenxuan
  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. 背包问题2 递归

    1下载:
  2. 一个0-1背包问题的C++实现,背包的容量为t,各物品的重量分别为w1,w2。。。wn,找一个能装下最大重量的物品组合,用递归形式的贪心法实现-a 0-1 knapsack problem of C achieved, the capacity for backpack t, the weight of the items were w1, w2. . . Wn, one can find the largest installed under the weight of goods portf
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:8600
    • 提供者:飞杨
  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. GA

    2下载:
  2. 本程序是在MATLAB平台上,利用智能优化算法遗传算法来解决01背包问题。在0 / 1背包问题中,需对容量为c 的背包进行装载。从n 个物品中选取装入背包的物品,每件物品i 的重量为wi ,价值为pi 。对于可行的背包装载,背包中物品的总重量不能超过背包的容量,最佳装载是指所装入的物品价值最高。-This procedure is in the MATLAB platform using intelligent genetic algorithm optimization algorithm t
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:1625
    • 提供者:周薇
  1. POS_c

    1下载:
  2. 本程序是用PSO用于求解NP难问题,如0-1背包问题,效果很好-This procedure is used PSO for solving the NP hard problems, such as 0-1 knapsack problem, well
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-02
    • 文件大小:1241
    • 提供者:杨维
  1. knapsack

    0下载:
  2. 0-1背包问题,典型的动态规划问题的实现过程-0-1 knapsack problem, a typical dynamic programming problem of the realization of the process! ! !
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:1175
    • 提供者:刘艺
  1. 0-1bag

    0下载:
  2. 实现0—1背包问题的分支限界搜索,为控制台应用程序,编译环境为vs2008-0-1 knapsack problem to achieve the branch and bound search for the console application, compile environment for vs2008
  3. 所属分类:Console

    • 发布日期:2017-05-01
    • 文件大小:549227
    • 提供者:heyujiao
  1. 0-1beibao

    0下载:
  2. 0-1d背包问题实验报告 完整的程序 已经运行过的 -0-1d knapsack full lab report procedure has been run-off
  3. 所属分类:CSharp

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

    0下载:
  2. 我自己用C写的一个用分支界限法实现0-1背包问题,比较简便实用,而且易懂,比回溯法有明显的优势-I have written in C, a branch and bound method 0-1 knapsack problem is relatively simple and practical, and easy to understand, there are obvious advantages than backtracking
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-17
    • 文件大小:5346
    • 提供者:李辉
  1. Backtracking-0-1

    0下载:
  2. 0-1背包问题的回溯法求解,0-1背包是在M件物品取出若干件放在空间为W的背包里,求出获得最大价值的方案。算法设计 回溯的思想。-Backtracking 0-1 knapsack problem solving 0-1 knapsack is removed in several pieces on items M space W backpack, determined to get the maximum value of the program. Backtracking algorit
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2469
    • 提供者:田梓君
  1. 0-1背包问题

    0下载:
  2. 0-1背包问题的实现,用HTML,js编写的算法(0-1 knapsack problem implementation, using HTML, JS algorithm written)
  3. 所属分类:其他

  1. c++实现0-1背包问题

    0下载:
  2. 用C++工具,使用动态规划算法实现0-1背包问题,(implementation of the 0-1 knapsack problem with C++)
  3. 所属分类:其他

    • 发布日期:2017-12-21
    • 文件大小:1024
    • 提供者:aoaopeng
  1. KnapSack2

    0下载:
  2. 0/1背包问题 利用的子集树,进行穷举算法实现(0/1 knapsack exhaustive problem)
  3. 所属分类:其他

    • 发布日期:2017-12-28
    • 文件大小:66560
    • 提供者:南笙123
  1. 背包问题动态规划详解

    0下载:
  2. 0/1背包问题动态规划详解及C代码 动态规划是用空间换时间的一种方法的抽象。(0/1 knapsack problem dynamic programming detailed and C code Dynamic programming is the abstraction of a method of replacing time with space.)
  3. 所属分类:其他

    • 发布日期:2018-01-02
    • 文件大小:13312
    • 提供者:zhangruliang
  1. 动态规划求解0-1背包问题

    1下载:
  2. 通过动态规划的算法得到装进背包的最大价值(The maximum value of knapsack is obtained by dynamic programming algorithm.)
  3. 所属分类:其他

    • 发布日期:2018-01-06
    • 文件大小:28672
    • 提供者:caoya104
  1. 0-1

    0下载:
  2. 利用动态规划实现0-1背包问题,文件包含源代码,解释说明及测试样例(Dynamic programming to achieve 0-1 knapsack problem.)
  3. 所属分类:其他

    • 发布日期:2018-04-18
    • 文件大小:447488
    • 提供者:pptv89
  1. 回溯法求解0-1背包问题

    0下载:
  2. 文件包括回溯法求解0-1背包问题的C++源程序,包括运行界面(The file includes a backtracking method for the C++ source program for solving 0-1 knapsack problems, including the running interface)
  3. 所属分类:其他

    • 发布日期:2018-04-30
    • 文件大小:43008
    • 提供者:yog206
  1. matlab程序(解决0-1背包问题)

    3下载:
  2. 使用遗传算法解决0-1背包问题,调试成功,非常适合初学者了解遗传算法和0-1背包问题(Using genetic algorithm to solve 0-1 knapsack problem, debugging is successful. It is very suitable for beginners to understand genetic algorithm and 0-1 knapsack problem.)
  3. 所属分类:其他

    • 发布日期:2020-10-10
    • 文件大小:21504
    • 提供者:MR安眠
  1. NSGA2解决0-1背包问题

    2下载:
  2. 用遗传算法解决背包问题,供大家参考交流。。。(Using genetic algorithm to solve the knapsack problem, for your reference and exchange...)
  3. 所属分类:其他

    • 发布日期:2021-02-26
    • 文件大小:6144
    • 提供者:刘一凡1
« 12 3 4 5 6 »
搜珍网 www.dssz.com