1
vote
1answer
134 views

Haskell - Avoiding a control stack overflow with tree recursion

For a university assignment, we have to investigate the various solutions to the knapsack problem, and then implement a solution in both Haskell and Python. I have chosen brute force. I realize there ...
0
votes
0answers
97 views

Knapsack subproblem - check if matrix can fill list of smaller matrix list

check if matrix can fill list of smaller matrix list Hi, i have a list of sizes ( for example : 3X1 , 4X2 and so on..) i want to check if i can put all of them in one matrix. i need to do it in a ...
0
votes
0answers
98 views

Copy answer array through recursive, dynamic 0-1 knapsack

I am currently writing a function to get an exact solution for the 0-1 knapsack function. This function accepts two arrays (for respective weights and prices), an array which indicates whether or not ...
1
vote
2answers
1k views

Knapsack problem with specified number of weights can be used

I have a knapsack problem with specified knapsack capacity for weight and weights count. I need an algorithm that packs weights to knapsack when knapsack capacity is C, needed weights count is N and ...
2
votes
2answers
1k views

Recursive backtracking

I am having a problem with my backtracking function it loops with certain data I can't write here the whole program code but can put here my function. bool shareMoney(int quantity, int *values, int ...