CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数学计算/工程计算 搜索资源 - 0-1背包问题

搜索资源列表

  1. 0-1beibao

    0下载:
  2. 0-1背包问题,采用了求最优解和求最优值,分别用递归和回代来实现.-0-1 knapsack problem using the optimal solution for the optimal value and demand, and to use recursive generation to achieve.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:7756
    • 提供者:林静
  1. bag

    0下载:
  2. 在0 / 1背包问题中,需对容量为c 的背包进行装载。从n 个物品中选取装入背包的物品,每件物品i 的重量为wi ,价值为pi 。对于可行的背包装载,背包中物品的总重量不能超过背包的容量,最佳装载是指所装入的物品价值最高,即p1*x1+p2*x1+...+pi*xi(其1<=i<=n,x取0或1,取1表示选取物品i) 取得最大值。
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:1538
    • 提供者:宋鑫坤
  1. 0-1package

    0下载:
  2. 0-1背包问题的分支限界算法实现,有详细的函数功能说明
  3. 所属分类:数学计算/工程计算

    • 发布日期:2014-01-17
    • 文件大小:1939
    • 提供者:古月
  1. BeiBao1

    0下载:
  2. 动态规划算法求解0-1背包问题,动态规划算法knapsack求最优值-Dynamic programming algorithm for solving 0-1 knapsack problem, dynamic programming algorithm for optimal value knapsack
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:171206
    • 提供者:walle
  1. simulatedannealingalgorithm

    0下载:
  2. 关于模拟退火算法的书籍,以及在0-1背包问题、旅行商问题上的实现-a book about simulated annealing algorithm
  3. 所属分类:Algorithm

    • 发布日期:2017-05-21
    • 文件大小:6216664
    • 提供者:jj
  1. i-ant

    0下载:
  2. 采用了基本的蚁群算法来求解0-1背包问题,该算法不仅可以对0-1背包问题进行求解,还可以对多维背包问题进行求解。-Using the basic ant colony algorithm to solve the 0-1 knapsack problem, the algorithm not only for the 0-1 knapsack problem can be solved, but also multi-dimensional knapsack problem can be sol
  3. 所属分类:Algorithm

    • 发布日期:2017-05-02
    • 文件大小:881768
    • 提供者:小龙
  1. bag_program

    0下载:
  2. 0-1背包问题,算法设计中最常见也是最经典的问题,希望对学习算法的有所帮助-0-1 knapsack problem, algorithm design of the most common and most classic problems in the hope of learning algorithms help
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:777
    • 提供者:张飞
  1. Backtrack_0-1bag

    0下载:
  2. 从文件读入数据,用回溯法实现了0-1背包最优解的问题-Read data from a file, using backtracking to achieve the optimal solution of the 0-1 knapsack problem
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:906
    • 提供者:canon
  1. 0-1

    0下载:
  2. 0-1背包问题, 给定一个载重量为m,n个物品,其重量为wi,价值为vi,1<=i<=n,要求:把物品装入背包,并使包内物品价值最大-0-1 knapsack problem, given a load for the m, n one item, the weight wi, the value of vi, 1 < = i < = n, asked: the items into backpacks, and to bag the maximum value of the
  3. 所属分类:Algorithm

    • 发布日期:2017-04-07
    • 文件大小:811
    • 提供者:浩星无恨
  1. 01pack

    0下载:
  2. 0-1背包问题:给定n种物品和一个背包。物品i的重量是Wi,其价值为Vi,背包的容量为C。应如何选择装入背包的物品,使得装入背包中物品的总价值最大?在选择装入背包的物品时,对每种物品i只有两种选择,即装入背包为1或不装入背包为0.不能将物品i装入背包多次,也不能只装入部分物品i。-0-1 pack
  3. 所属分类:Algorithm

    • 发布日期:2017-04-23
    • 文件大小:374750
    • 提供者:李静
  1. bag-C-Algorithm

    0下载:
  2. 背包问题系列算法详解 背包问题是一个关于最优解的经典问题。通常被讨论的最多的,最经典的背包问题是0-1背包问题(0-1 Knapsack Problem)。它是一切背包问题及相关背包问题的基础。本篇博文将详细分析0-1背包问题,并给出0-1背包问题的几种解法,同时也对0-1背包问题的内涵进行延伸,丰富其外延至完全背包问题和多重背包问题,并给出背包问题的算法实现过程,希望对大家有帮助。-Detailed Algorithm for Knapsack Problem Series
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:5147
    • 提供者:唐永笙
  1. 0-1bag-question

    0下载:
  2. 0-1背包问题 一种简单的算法 用c++实现的源代码-0-1bag question
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:697
    • 提供者:郭志伟
  1. beibao

    0下载:
  2. 用动态规划的方法解0/1背包问题。用VC6编译运行正确。供参考-Using dynamic programming for solving 0/1 knapsack problem. Compile and run correctly with VC6. Reference
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:1536
    • 提供者:会员
  1. branchknapser

    0下载:
  2. 本程序实现分支界限算法求解0-1背包问题,c语言-The boundaries of the program to achieve branch 0-1 knapsack problem algorithm, c language
  3. 所属分类:Algorithm

    • 发布日期:2017-04-13
    • 文件大小:2928
    • 提供者:发奋图强
  1. algorithm

    0下载:
  2. 熟悉C/C++语言的集成开发环境;通过本实验加深对分治法、贪心算法的理解。掌握贪心算法、动态规划和回溯算法的概念和基本思想,分析并掌握"0-1"背包问题的三种算法,并分析其优缺点。-Master the greedy algorithm, the dynamic programming algorithm and back of the concept and basic thought, analysis and master "0-1" knapsack problem three algo
  3. 所属分类:Algorithm

    • 发布日期:2017-04-05
    • 文件大小:127091
    • 提供者:武楠
  1. 0-1

    0下载:
  2. 用动态规划思路去解答经典的0-1背包问题,已成功通过调试-Using dynamic programming ideas to answer the classic 0-1 knapsack problem, has successfully passed the debugging
  3. 所属分类:Algorithm

    • 发布日期:2017-04-08
    • 文件大小:850
    • 提供者:Mary
  1. 0-1Jump

    0下载:
  2. 用动态规划去解答0-1背包问题,此方法是在经典背包问题上进行的跳跃点优化而解答出来的,已成功通过编译调试-Using dynamic programming to answer 0-1 knapsack problem, this method is carried out on the classic knapsack problem jumps out optimization solutions, has successfully passed the compiler debugging
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:597
    • 提供者:Mary
  1. 0-1bag

    0下载:
  2. 0-1背包问题:有N件物品和一个容量为V的背包。第i件物品的花费是c[i],价值是w[i]。求解将哪些物品装入背包可使价值总和最大。-The 0-1 knapsack problem: N items and a capacity of V backpack. Take the first I items is c[i], the value is w[i]. For which goods loaded backpack can make the value of the sum of the
  3. 所属分类:Algorithm

    • 发布日期:2017-04-17
    • 文件大小:34510
    • 提供者:吴双双
  1. 0-1bag

    0下载:
  2. 经典的0-1背包问题,程序可以自动输入并且有注释-Classical 0-1 knapsack problem, the program can automatically entered and annotated
  3. 所属分类:Algorithm

    • 发布日期:2017-04-11
    • 文件大小:669
    • 提供者:皮阳
  1. test.py

    0下载:
  2. 通过遗传算法解决0-1背包问题,以选择办事处为背景(solve the package problem through genetic algorithm)
  3. 所属分类:数学计算

    • 发布日期:2018-04-29
    • 文件大小:1024
    • 提供者:YJL22
« 12 »
搜珍网 www.dssz.com