Tagged Questions

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 ...
1
vote
1answer
49 views

Solving 3D knapsack using bruteforce in Java

I want to solve a 3-dimesional knapsack problem. I got a number of boxes with a different width, height, length and value. I got a specified space and I want to put the boxes into that space, such ...
1
vote
2answers
178 views

Memory Choke on Branch And Bound Knapsack Implementation

I wrote this implementation of the branch and bound knapsack algorithm based on the pseudo-Java code from here. Unfortunately, it's memory choking on large instances of the problem, like this. Why is ...
1
vote
2answers
966 views

How to implement the Sum of Subsets problem in Java

Does anyone know how to implement the Sum-of-Subsets problem in Java from this pseudo code? w = an array of positive integers sorted in non-decreasing order. W = the target sum value include = an ...
1
vote
1answer
592 views

JaCoP: Solving an 0/1 knapsack problem

I've been trying to teach myself how to use the JaCoP constraint programming library but I'm having a bit of difficulty implementing an 0/1 knapsack problem. I've tried a problem size of 4 and defined ...
1
vote
2answers
2k views

How to ensure Java threads run on different cores

I am writing a multi-threaded application in Java in order to improve performance over the sequential version. It is a parallel version of the dynamic programming solution to the 0/1 knapsack problem. ...
0
votes
1answer
58 views

Code sometimes returns Integer.MAX_VALUE.Cannot figure out why

I am trying to write code to return the lowest number of coins needed to make up a given number. The inputs to my method are an array of valid coins, and the number I try to make. public static ...
0
votes
3answers
264 views

How do I solve the 'classic' knapsack algorithm recursively?

This is my task The Knapsack Problem is a classic in computer science. In its simplest form it involves trying to fit items of different weights into a knapsack so that the knapsack ends up ...