CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - knapsack
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - knapsack - List
[
Mathimatics-Numerical algorithms
]
knapsack
DL : 0
算法设计实验背包问题的实现visualc++实现。-Experimental realization algorithm knapsack problem
Date
: 2025-07-15
Size
: 403kb
User
:
蓉蓉
[
Data structs
]
01-knapsack-problem--
DL : 0
01背包问题的优先队列式分支限界算法程序实现-01 knapsack problem with priority queues to achieve branch and bound algorithm program
Date
: 2025-07-15
Size
: 760kb
User
:
hudongfang
[
Data structs
]
Knapsack-problem
DL : 0
背包问题(Knapsack problem)是一种组合优化的NP完全问题。问题可以描述为:给定一组物品,每种物品都有自己的重量和价格,在限定的总重量内,我们如何选择,才能使得物品的总价格最高。用2种方法实现背包问题,用C语言编写,数据结构课内试验-Knapsack problem (Knapsack problem) is NP-complete combinatorial optimization problem. Problem can be described as: Given a set of items, each item has its own weight and price, the total weight limit, we choose, to make up the total price of items. 2 methods used to achieve knapsack problem, using C language, data structure testing curricular
Date
: 2025-07-15
Size
: 1002kb
User
:
linfuhong
[
Mathimatics-Numerical algorithms
]
ipack
DL : 0
vc++ 算法解决背包问题 贪心算法 algorithm to solve knapsack problem greedy algorithm-vc++ algorithm to solve knapsack problem greedy algorithm
Date
: 2025-07-15
Size
: 1.76mb
User
:
杨依依
[
Algorithm
]
Knapsack
DL : 0
Knapsack with dynamic programming
Date
: 2025-07-15
Size
: 1kb
User
:
arekpr
[
Data structs
]
knapsack(five)
DL : 0
实现0-1背包问题的优先队列分支限界算法 FIFO 分支限界算法 递归法 回溯法 动态规划算法-0-1 knapsack problem to achieve the priority queue FIFO branch and bound algorithms branch and bound backtracking algorithm recursion dynamic programming algorithm
Date
: 2025-07-15
Size
: 14kb
User
:
iwillgoon
[
Data structs
]
0-1-knapsack-problem
DL : 0
01背包是在M件物品取出若干件放在空间为W的背包里,每件物品的体积为W1,W2……Wn,与之相对应的价值为P1,P2……Pn。求出获得最大价值的方案。在本例中所有数值均为整数-01 M items in the backpack is out of a number of pieces on the space W of the backpack, the size of each item as W1, W2 ... ... Wn, corresponding to the value of P1, P2 ... ... Pn. Find the maximum value of the program. In this case, all values are integers
Date
: 2025-07-15
Size
: 133kb
User
:
阿四
[
AI-NN-PR
]
01-knapsack-problem
DL : 0
01背包问题的解决方法很多,下面用遗传算法解决01背包问题-01 knapsack problem genetic algorithm to solve
Date
: 2025-07-15
Size
: 4kb
User
:
lixingze
[
AI-NN-PR
]
01-knapsack-problem1
DL : 0
01背包问题,有很多方法可以解决,下面采用动态规划的方法。-01 knapsack problem, there are many ways to solve
Date
: 2025-07-15
Size
: 1kb
User
:
lixingze
[
Data structs
]
01-knapsack-problem
DL : 0
使用c++实现了0-1背包问题的算法,根据要求找出最佳的选项放入背包-Using c++ implementation of the 0-1 knapsack problem algorithms required to find the best option backpack
Date
: 2025-07-15
Size
: 1kb
User
:
rucy
[
Data structs
]
Knapsack
DL : 0
基于0-1背包问题的A星算法,在VC++6.0上运行通过。-A Star algorithm based on 0-1 Knapsack problem ,it can run in VC++ 6.0 platform.
Date
: 2025-07-15
Size
: 3kb
User
:
乖乖虎
[
Data structs
]
KNAPSACK
DL : 0
0-1背包问题,用动态规划做的,很不错,供大家传阅。算法设计的原型。我给具体实现了。-0-1 knapsack problem, using dynamic programming to do, very good for your circulation. Algorithm design prototype. I gave a concrete realization.
Date
: 2025-07-15
Size
: 573kb
User
:
尚启昌
[
matlab
]
PSO-for-knapsack-problem
DL : 0
pso算法在背包问题中的matlab程序。-pso algorithm in the knapsack problem in the matlab program.
Date
: 2025-07-15
Size
: 18kb
User
:
hancunai
[
Data structs
]
Knapsack-problem1
DL : 0
这是一个关于背包问题的算法,其中使用了贪婪算法的思想,程序可以成功运行。-The algorithm is about the Knapsack problem,it uses a greedy algorithm, the program can be run successfully.
Date
: 2025-07-15
Size
: 1kb
User
:
小韩
[
Data structs
]
Knapsack-problem2
DL : 0
这是一个关于背包问题的算法,其中使用了回溯的思想,程序可以成功运行。-The algorithm is about the Knapsack problem,it uses Backtracking algorithm , the program can be run successfully.
Date
: 2025-07-15
Size
: 1kb
User
:
小韩
[
JSP/Java
]
knapsack
DL : 0
knapsack,用回溯法背包问题,可直接在eclipse上运行。标题不小心写错了-knapsack, knapsack problem with backtracking, can be directly run in eclipse.
Date
: 2025-07-15
Size
: 7kb
User
:
康靖林
[
Data structs
]
Knapsack
DL : 0
《算法设计与分析》Knapsack算法实现-the resource code of Knapsack
Date
: 2025-07-15
Size
: 31kb
User
:
王小丫
[
Data structs
]
KnapSack
DL : 0
蛮力、动态规划、回溯、分支限界四种算法求解0/1背包问题-Four algorithms(brute force, dynamic programming, backtracking, branch and bound ) to solve 0/1 knapsack problem
Date
: 2025-07-15
Size
: 2kb
User
:
WangXiaolei
[
JSP/Java
]
knapsack
DL : 0
Knapsack implementation
Date
: 2025-07-15
Size
: 1kb
User
:
Meera
[
JSP/Java
]
Knapsack
DL : 0
包含3个文件,背包问题,旅行商问题,最优BST,都是java编写的。-File have three parts .They are bag problem,knapsack problem and OptimalBST.
Date
: 2025-07-15
Size
: 3kb
User
:
liwei
«
1
2
...
5
6
7
8
9
10
11
12
13
14
15
...
50
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.