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

搜索资源列表

  1. tanxinsuanfa

    0下载:
  2. 背包问题和0/1背包问题的主要区别就是物品可不可以再分割。背包问题中的物品可以再进行分割,而0/1背包问题中的物品则反之。贪心算法往往只从局部去考虑问题,所以在解决0/1背包问题时得不到最优解。-class GreedyAlgorithm{ public: GreedyAlgorithm(int _weight[],int _value[],int capacity) double*ComputeRatio() void Sor
  3. 所属分类:Other systems

    • 发布日期:2017-03-27
    • 文件大小:1052
    • 提供者:wenwen
  1. dongtaiguihua

    0下载:
  2. 动态规划解决0-1背包问题,可以完整输出结果-Dynamic programming to solve 0-1 knapsack problem, you can complete the output
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:782
    • 提供者:高宇
  1. knapsack

    0下载:
  2. c语言实现的0-1背包问题,很简单,运行正常可靠,页面简洁。-c language implementation of the 0-1 knapsack problem, is very simple, operating normally reliable, simple page.
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:663
    • 提供者:风筝
  1. txss

    0下载:
  2. 0-1背包问题,非常重要的,必须好好学啊!同学忙呢 -0-1 knapsack problem, a very important and should be properly learn ah! Busy students do
  3. 所属分类:File Operate

    • 发布日期:2017-04-01
    • 文件大小:1523
    • 提供者:汪九
  1. knapsack

    0下载:
  2. 这个文件夹包含了0-1背包问题的源代码、可执行文件和上级报告。-This folder contains the 0-1 knapsack problem source code, executable files, and supervisor.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:154547
    • 提供者:shizilong
  1. BranchandBound_01backpack

    0下载:
  2. 0-1背包问题是一个经典的算法问题,有多种解法,这里用分支定界法求解。-0-1 knapsack problem is a classical algorithm for the problem, there are several solution here solved with branch and bound method.
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:726717
    • 提供者:储大为
  1. DynamicProgramming_01backpack

    0下载:
  2. 0-1背包问题是一个经典的算法问题,有多种解法,这里用动态规划的方法求解。-0-1 knapsack problem is a classical algorithm for the problem, there are a variety of solution, where the method for solving using dynamic programming.
  3. 所属分类:Other systems

    • 发布日期:2017-04-09
    • 文件大小:537311
    • 提供者:储大为
  1. 0-1KnapsackProblem

    0下载:
  2. 這是一個使用greedy所寫的0-1 Knapsack Problem ,所有的物品若要取則必須全取,此程式可以讓背包裝最多且最有價值的物品-This is a greedy written using the 0-1 Knapsack Problem, to take all the items must all take, the program can back up and packing the most valuable items
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:809
    • 提供者:林文華
  1. Recursive-loop

    0下载:
  2. 是学习递归循环用法的很好的几个实例,包括经典的0-1背包问题,8皇后问题,概率问题等等,相信能帮助你更好的理解C中递归循环的实现。-Learning recursive cycle usage of several instances, including the classical 0-1 knapsack problem, the eight queens problem, probability problems, I believe it can help you understand
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-16
    • 文件大小:4395802
    • 提供者:bob
  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. 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. knapsack

    0下载:
  2. 利用遗传算法解决0-1背包问题的c++程序代码-Genetic algorithm to solve the knapsack problem c++ program
  3. 所属分类:Other systems

    • 发布日期:2017-12-10
    • 文件大小:10427
    • 提供者:sukey
  1. fenzhixianjie

    0下载:
  2. 分支限界法实现0-1背包问题源代码测试通过-Source code testing by branch and bound 0-1 knapsack problem
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-02
    • 文件大小:1284
    • 提供者:ygc
  1. box

    0下载:
  2. 基于动态规划法的0-1背包问题,本代码实现了背包问题的详细过程。-0-1 knapsack problem based on dynamic programming, the code to achieve the detailed process of the knapsack problem.
  3. 所属分类:Console

    • 发布日期:2017-11-09
    • 文件大小:229182
    • 提供者:李莹莹
  1. beibao

    0下载:
  2. 0-1背包问题,实现对一组货物价值最大化的筛选,应用排序和贪心算法实现。-0-1beibao problem
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-18
    • 文件大小:11008
    • 提供者:陈国华
  1. knapsack

    0下载:
  2. 本源程序主要是实现算法中的0-1背包问题,此程序在Visual C++6.0下实现-implement the knapsack problem
  3. 所属分类:Other systems

    • 发布日期:2017-11-21
    • 文件大小:1114333
    • 提供者:xiaochun
  1. code

    0下载:
  2. 使用回溯法解决的典型问题的算法:骑士巡游问题,n皇后问题,0-1背包问题。 使用递归与分治策略解决的几个问题的算法:Hanoi塔问题和二分搜索技术。-Uses backtracking method to solve the problems of the typical algorithms: the knight tour problem, n queen problem, 0-1 knapsack problem. Recursion and divide and conq
  3. 所属分类:Other systems

    • 发布日期:2017-11-30
    • 文件大小:3288
    • 提供者:阿丁汤圆
  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. 6d5

    0下载:
  2. 王晓东《算法设计与分析》第六章第五节0-1背包问题分支限界法求解-Xiaodong " algorithm design and analysis," Chapter V 0-1 knapsack problem branch and bound method to solve
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-28
    • 文件大小:3730
    • 提供者:王栋
  1. suanfa

    0下载:
  2. 计算机算法设计与分析 0-1背包问题 士兵站队问题 最长子序列 工作分配 会场安排 -Design and Analysis of Computer Algorithms 0-1 knapsack problem question soldiers stand longest sequence assignment venue arrangements
  3. 所属分类:.net

    • 发布日期:2017-11-20
    • 文件大小:6304
    • 提供者:ss
« 1 2 3 45 6 7 »
搜珍网 www.dssz.com