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 an item is finally put inside the knapsack), the total number of items, the current point in the arrays, and the total weight remaining. My code so far is as follows..
int Dynamic::compare(int i, int weight){
int first, second;
if ((i+1)==n){
if (weight>=W[n-1]){
X[n]=1;
return P[n-1];
}
if (weight<W[n-1]){
X[n]=0;
return 0;
}
}
if (weight<W[i]) return (compare(i+1,weight));
X = new int[n];
first = (compare(i+1,weight));
second = (compare(i+1,weight-W[i])+P[i]);
if (first>=second){
X[i]=0;
return first;
}
else if (first<second){
X[i]=1;
return second;
}
delete []X;
}
I know I should dynamically create a new array every recursion and copy the "correct" X array after determining the max. However, I do not have any idea on how to perform this.
In short, I am looking for a way to make an answer array for this 0-1 knapsack recursion that records a 1 for items in the array and a 0 for items not in the array.