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

搜索资源列表

  1. bag

    0下载:
  2. C++语言编制的一般背包问题,可用于一般的算法实验-General knapsack problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:214524
    • 提供者:kxm
  1. Knapsack

    0下载:
  2. 包含3个文件,背包问题,旅行商问题,最优BST,都是java编写的。-File have three parts .They are bag problem,knapsack problem and OptimalBST.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-14
    • 文件大小:2954
    • 提供者:liwei
  1. 0_1bag

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

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

    0下载:
  2. 这个是自己用matlab编写的简单的背包问题源程序-DP beibao
  3. 所属分类:matlab

    • 发布日期:2017-04-11
    • 文件大小:553
    • 提供者:hj766
  1. 0-1beibao

    0下载:
  2. 蚁群算法求解0-1背包问题,压缩包中有详细的代码和实验报告,可以调试运行-Ant Colony Algorithm for the 0-1 knapsack problem, compressed package are detailed in the code and lab reports, debugging and running
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-07
    • 文件大小:1218010
    • 提供者:张小
  1. Backbag

    0下载:
  2. 背包问题(Knapsack problem)是一种组合优化的NP完全问题。问题可以描述为:给定一组物品,每种物品都有自己的重量和价格,在限定的总重量内,我们如何选择,才能使得物品的总价格最高。问题的名称来源于如何选择最合适的物品放置于给定背包中。-Knapsack problem (Knapsack problem) is a kind of combinatorial optimization problem of NP complete. Problems can be described
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:961622
    • 提供者:方期待
  1. beibaoPSO

    0下载:
  2. 粒子群算法解决0-1背包问题,对于n个体积为aj、价值分别为cj的物品,如何将它们装入总体积为b的背包中,使得所选物品的总价值最大。-Particle swarm algorithm to solve the 0-1 knapsack problem, for n volume for aj, value for cj items, how they are loaded in the total volume of the backpack, b, making the total value
  3. 所属分类:matlab

    • 发布日期:2017-04-05
    • 文件大小:1238
    • 提供者:whl
  1. pso_01tsp

    0下载:
  2. 粒子群背包问题,最多处理数据500条.输入 pso 回车即可-the pso algorithm can solve the TSP,the most number is 500
  3. 所属分类:matlab

    • 发布日期:2017-04-15
    • 文件大小:8198
    • 提供者:雷雷
  1. beibaoV2

    0下载:
  2. 背包问题,算法问题研究,这个是本书,大家共同参考,算法竞赛需要的。-Knapsack problems, the algorithm research problems, this is this book, everyone to reference, the algorithm of competition needs.
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:276959
    • 提供者:baoliguo
  1. CFbackpackPluginEasyLanguageSource

    0下载:
  2. CF背包外挂易语言源码 CF背包外挂易语言源码-CF backpack plug-in easy language source
  3. 所属分类:射击游戏

    • 发布日期:2017-04-01
    • 文件大小:151983
    • 提供者:lucy
  1. classic-cPP-programs

    0下载:
  2. 冒泡法 附加详解 快速排序 双向冒泡 SHELL排序 进制转换 后面还有 算法的问题+解析。 背包 -Bubbling method additional explanation Quick sort Two-way bubbling SHELL sort Into system transformation There are problems+ analysis algorithm. Backpack......
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:30257
    • 提供者:雪特
  1. kp

    0下载:
  2. 在C++环境下,基于遗传算法解决背包问题。-In the C environment, based on genetic algorithm to solve the knapsack problem.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-02
    • 文件大小:3014
    • 提供者:都好打
  1. bag

    0下载:
  2. 使用C++实现的01背包小程序可以在vc下运行-a algorith of 01 bag can run in VC directly
  3. 所属分类:Other windows programs

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

    0下载:
  2. 一个贪心背包的小程序可以在VC下运行,可作为算法学习参考- a greed bag algorithm implementation can run in VC
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:898989
    • 提供者:shine
  1. dsadsa

    0下载:
  2. 贪心算法的实现:1、 最优装载实现 2、 0-1背包问题实现. -The greedy algorithm implemented: 1, the optimal load the implementation 2, knapsack problem is realized.
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:31460
    • 提供者:宇文
  1. knapsack-problem

    0下载:
  2. 原创,背包问题的四种解法,回溯法,动态规划法,以及两种蛮力法,C++代码,编译运行通过,结果正确,可以比较各种方法的效率。-The original, four solutions of the knapsack problem, backtracking, dynamic programming, and two brute force method, C++ code, compile, run through, the result is correct, you can compare
  3. 所属分类:Data structs

    • 发布日期:2017-05-10
    • 文件大小:2451144
    • 提供者:ZLS
  1. Dynamic-programming-DP-backpack

    0下载:
  2. 用动态规划算法解决DP背包问题,采用C++编程-Dynamic programming algorithm to solve the DP knapsack problem, using C++ programming
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:871933
    • 提供者:lydia
  1. beipaowenti

    0下载:
  2. 背包算法的c++简单实现,很有用的,可以-Knapsack algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:999
    • 提供者:
  1. beibao

    0下载:
  2. 假设有一个能装入总体积为T的背包和n件体积分别为w1 , w2 , … , wn 的物品,能否从n件物品中挑选若干件恰好装满背包,即使w1 +w2 + … + wn=T,要求找出所有满足上述条件的解。例如:当T=10,各件物品的体积{1,8,4,3,5,2}时,可找到下列4组解: (1,4,3,2) (1,4,5) (8,2) (3,5,2)。 -Suppose there are a load of the backpack of the total volume of T
  3. 所属分类:assembly language

    • 发布日期:2016-01-26
    • 文件大小:1024
    • 提供者:zhengzelun
  1. huisufa0-1

    0下载:
  2. 算法分析-回溯法,0-1背包问题,按选优条件向前搜索,以达到目标。-Algorithm- Backtracking,0-1Knapsack problem,Forward search, the optimal selection conditions in order to achieve the goal.
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:209122
    • 提供者:江淮
« 1 2 ... 43 44 45 46 47 4849 50 »
搜珍网 www.dssz.com