私は、再帰的に1,2,3,4と言うことができるすべての可能な組み合わせで満たされた2次元配列リストを作成しようとしています. ダブルアップなし。
例えば。
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]);
編集:また、結果を印刷しようとはしていません。結果を2次元配列に保存したい