我正在尝试制作一个二维数组列表,其中填充了每一种可能的组合,比如递归地说 1、2、3、4。没有翻倍。
例如。
1,0,0
2,0,0
3,0,0
4,0,0
1,2,0
1,3,0
1,4,0
1,2,3
等...
到目前为止我有
//this gives me all my numbers
for(int i =0;i<arraySize;i++)
index[i] = i;
// and is the part that make the combinations
for(int i = 0;i<arraySize;i++){
for(int x = 0;x<k;x++)
combinations.get(i).set(x, index[i]);
编辑:我也不想打印结果我想将结果存储在二维数组中