该数组memo[][]
正在返回位于 中的布料memo[X][Y]
。我已经测试了这个类,它似乎只存储第一块适合的布料memo[X][Y]
,但我希望它返回最有价值的适合的布料memo[X][Y]
。我怎样才能做到这一点?
class ClothCutter {
static ArrayList <Pattern> patterns; //array of patterns to try
static Cloth maxCloth; //the maximum cloth
static Cloth memo[][]; // memo for maximum cloth (X,Y), memo[X][Y]
int width;
int height;
//Constructor
public ClothCutter(int w, int h,ArrayList<Pattern> p) {
width = w;
height = h;
patterns = p;
maxCloth = new Cloth(w,h);
memo = new Cloth [w+1][h+1];
for (int i = 0; i<patterns.size();i++) {
Pattern z = patterns.get(i);
System.out.println(z.name);
Cloth m = new Cloth(z.width,z.height);
m.add(z);
memo[z.width][z.height]=m;
System.out.println(memo[z.width][z.height].value);
}
}
public Cloth optimize() {
return optimize(maxCloth);
}
public Cloth optimize(Cloth c){
Cloth temp1 = new Cloth();
Cloth temp2 = new Cloth();
Cloth max = new Cloth(c.width,c.height);//temporary max
if (memo[c.width][c.height]!=null) // return memo if there is one
return memo[c.width][c.height];
if (c.width==0||c.height==0) //if (X||Y ==0)
memo[c.width][c.height]=max;
return max;
}
for (int i=0;i<patterns.size();i++) { //for each pattern
Pattern p = patterns.get(i);
if (p.width<=c.width && p.height<=c.height) {
if (p.width<c.width) {
//if the pattern's width is less than the cloth's width
Cloth a = new Cloth(c.width-p.width,c.height);//cut vertically
a.pattern = p;
Cloth b = new Cloth(p.width,c.height);//remainder after vertical cut
b.pattern = p;
temp2=optimize(b);//recurse
temp1=optimize(a);//recurse
}
if (c.width==p.width) {
//if the cloth's width is equal to a patterns with start cutting horizontally
Cloth a = new Cloth(c.width,c.height-p.height);//horizontal cut
a.pattern=p;
Cloth b = new Cloth(c.width,p.height);//remainder after horizontal cut
b.pattern = p;
temp2=optimize(b);//recurse
temp1=optimize(a);//recurse
}
if (temp1.value+temp2.value>max.value) {
//if the value of the optimal cloths is greater than the value of max
max.add(temp1,temp2);//add the two cloths to max
max.pattern = p;
if (max.width == maxCloth.width && max.height == maxCloth.height && maxCloth.value < max.value)
// if the max dimentions is equal to maxCloth dimetions and the value of the maxCloth is less than max
maxCloth=max;//set maxCloth to max
}
}
}
if (memo[max.width][max.height]==null) //if memo is equal to null
memo[max.width][max.height]=max;// create memo
return max;
}