我正在尝试用 Java 编写一个程序,该程序将计算整数数组(包含 5 个元素)中的所有元素组合并将这些组合输出到 ArrayList。我在下面包含了我的代码。
我使用按位运算来查找组合。每个组合都构造为一个 ArrayList(Integer),称为“writeitem”。然后我想将这些存储在另一个 ArrayList 中,称为“master”,它必须具有 ArrayList(ArrayList(Integer)) 的形式。[出于格式原因 <> 必须替换为 (); 否则他们不会出现...]
尝试将每个组合保存到“主”ArrayList 时会出现问题。如果您运行下面的代码,printf 函数将显示组合构造正确。但是,一旦我要求将其“添加”到“master”,它似乎并没有附加到“master”的末尾。相反,所有“主”都被刚刚构建的组合的 i 个副本覆盖。
因此,例如,如果我在 [1,2,3,4,5] 上调用该函数,我的“主”数组最终是 [1,2,3,4,5] 的 31 个副本(第 31 个组合被发现)。
我想这与使用嵌套数组列表有关,并且有更好的方法来实现我想要的。但同样有可能我犯了其他一些新手错误。
static ArrayList<ArrayList<Integer>> master = new ArrayList<ArrayList<Integer>>();
public static void generatecombs(int[] x){
ArrayList<Integer> writeitem = new ArrayList<Integer>(); //empty list to construct each comb
for(int i=1;i<32;i++){
writeitem.clear(); //clear before constructing next combination
if((i & 1)>0){ //check if each element is present in combination
writeitem.add(x[0]);
}
if((i & 2)>0){
writeitem.add(x[1]);
}
if((i & 4)>0){
writeitem.add(x[2]);
}
if((i & 8)>0){
writeitem.add(x[3]);
}
if((i & 16)>0){
writeitem.add(x[4]);
}
System.out.printf("The %dth combination is %s\n", i,writeitem);
master.add(writeitem); //output constructed element
System.out.printf("The collection so far is: %s\n", master);
}
}