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 Dictionaries. For those who dont know what I'm talking about check out The Cutting Stock Problem.

link|improve this question

Did you have a look at the formulation as an ILP? – phimuemue Aug 29 '10 at 11:10
feedback

1 Answer

up vote 2 down vote accepted

As mentioned in your given link, this problem is in fact an instance of an ILP, which is NP-hard normally.

Directly from wikipedia: Advanced algorithms for solving integer linear programs include:

link|improve this answer
Yea i did an implementation, based on the Branch and cut method – Sam Aug 30 '10 at 4:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.