Tagged Questions
6
votes
3answers
271 views
0-1 Knapsack algorithm
Is the following 0-1 Knapsack problem solvable:
'float' positive values and
'float' weights (can be positive or negative)
'float' capacity of the knapsack > 0
I have on average < 10 items, so ...
5
votes
2answers
444 views
C# 0-1 Knapsack Problem with known sum and number of zeros in set
I have a 5x5 table of values from 0 to 3 inclusive with all values unknown. I know both the sum of the values and the number of zeros for each row and column. How would I go about solving this 0-1 ...
5
votes
1answer
578 views
Cutting Stock Problem
Does anyone know how to implement the algorithm for this problem using the Knapsack algorithm?
The method I'm using at present makes extensive use of LINQ and Collections of Collections and a few ...
3
votes
3answers
1k views
Possible Combination of Knapsack problem and?
Alright quick overview
I have looked into the knapsack problem
http://en.wikipedia.org/wiki/Knapsack_problem
and i know it is what i need for my project, but the complicated part of my project ...