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

搜索资源列表

  1. beibaofenti

    0下载:
  2. 大学数据结构上机作业,C++语言写的0-1背包问题解析,练习并理解0-1背包的原理。-University of machine operation data structures, C++ language to write the 0-1 knapsack problem analysis, practice and understand the principles of the 0-1 knapsack.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:37756
    • 提供者:党阳
  1. GenericAlgorithm

    0下载:
  2. 该代码为遗传算法以及两个实例,背包问题和旅行商问题,每个实例均有三组数据写在代码中,运行时将不需要的数据注释掉即可。-The source is about generic algorithm, including two examples, the knapsack problem and the traveling salesman problem.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-15
    • 文件大小:24765
    • 提供者:陈易
  1. knapsackproblem

    0下载:
  2. 分别用蛮力法、回溯法解决0/1背包,visual studio开发环境-Were used brute force method, backtracking to solve the 0/1 knapsack, visual studio development environment
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-23
    • 文件大小:203269
    • 提供者:wen
  1. 0-1beibao

    0下载:
  2. 算法设计与分析 0-背包问题动态规划算法源代码-Algorithm Design and Analysis 0- knapsack problem dynamic programming algorithm source code
  3. 所属分类:MPI

    • 发布日期:2017-04-10
    • 文件大小:828
    • 提供者:知秋
  1. bag

    0下载:
  2. 非常经典的0-1背包问题采用贪心算法实现-Very classical 0-1 knapsack problem using greedy algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:4891
    • 提供者:许文韬
  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. 01beibao

    0下载:
  2. 使用VC编程工具,C语言实现动态规划算法解决01背包问题-Using the VC programming tool, C language implementation 01 knapsack problem solving dynamic programming algorithm
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-04
    • 文件大小:169601
    • 提供者:Google
  1. 01knap

    0下载:
  2. 回溯法解决01背包问题-Backtracking to solve 01 knapsack problem
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:960
    • 提供者:joe wu
  1. PACKET

    0下载:
  2. 分支界限问题中的背包算法,希望对大家有所帮助!-Knapsack algorithm of branch line questions, hope to be of help!
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:6371
    • 提供者:Mary
  1. exp3

    0下载:
  2. 贪心法解背包问题的c语言源程序 编译通过-Greedy method solving knapsack problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:938
    • 提供者:aaa
  1. Backpack-nine-speak

    0下载:
  2. 01背包模板 多重背包模板 完全背包-01 knapsack template multiple template completely backpack
  3. 所属分类:software engineering

    • 发布日期:2017-04-16
    • 文件大小:41091
    • 提供者:陈杰
  1. source

    0下载:
  2. home+work其实是01背包问题,二维一维都可以-home+work actually 01 knapsack problem, can be a two-dimensional one-dimensional
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-10
    • 文件大小:1024
    • 提供者:22
  1. beibao

    0下载:
  2. 一个很好的运用模拟退火解决0-1背包问题的一个例子程序-A good use of simulated annealing to solve 0-1 knapsack problem an example program
  3. 所属分类:assembly language

    • 发布日期:2017-04-10
    • 文件大小:905
    • 提供者:孙德宇
  1. GA_knapsack

    0下载:
  2. 使用遗传算法解决0-1背包问题,算法效率好-The use of genetic algorithm to solve 0-1 knapsack problem, a good algorithm efficiency
  3. 所属分类:MPI

    • 发布日期:2017-04-06
    • 文件大小:2977
    • 提供者:wzs
  1. tanlanbeibao

    0下载:
  2. 进的背包问题:给定一个超递增序列和一个背包的容量,然后在超递增序列中选(只能选一次)或不选每一个数值,使得选中的数值的和正好等于背包的容量。 代码思路:从最大的元素开始遍历超递增序列中的每个元素,若背包还有大于或等于当前元素值的空间,则放入,然后继续判断下一个元素;若背包剩余空间小于当前元素值,则判断下一个元素-Into the knapsack problem: Given a super-increasing sequence and a capacity backpack, an
  3. 所属分类:Algorithm

    • 发布日期:2017-04-15
    • 文件大小:7064
    • 提供者:王杭
  1. Floyed-Huffman-prim

    0下载:
  2. 算法设计与分析课程中常用的一些算法,包括Floyed算法,Huffman算法、prim算法,单源最短路径算法,分数背包问题-Algorithm Design and Analysis course some commonly used algorithms, including Floyed algorithm, Huffman algorithm, prim algorithm, single-source shortest path algorithm, fractional knapsac
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:540647
    • 提供者:liyuqin
  1. huisujiexian

    0下载:
  2. 用回溯界限的方法,解决背包问题。可以有效的运行.-Boundaries with backtracking method to solve the knapsack problem. Can effectively run.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-15
    • 文件大小:7677
    • 提供者:boyuntian
  1. Binary-Knapsack-Problem

    0下载:
  2. Tournoment selection
  3. 所属分类:Other systems

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

    0下载:
  2. 假设有n件物品,每件物品有各自的重量W1,W2,……,Wn和 与之对应的价值V1,V2,……,Vn。设背包的容量为c,在不超过背包容量的前提下,求出获得最大价值总和的方案。(0-1背包的情况下物品不可分割,只能选择放入,或者不放入背包中)。 -Suppose there are n items, each item has its own weight W1, W2, ......, Wn and the corresponding value of V1, V2, ......, Vn
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:226601
    • 提供者:李五
  1. knapsack_algorith

    0下载:
  2. matlap source code for knapsack problem
  3. 所属分类:matlab例程

    • 发布日期:2014-01-11
    • 文件大小:2095
    • 提供者:mohamedgalal
« 1 2 ... 44 45 46 47 48 4950 »
搜珍网 www.dssz.com