我必须获得这种矩阵的所有可能组合:
String[][] matrix = {
{"AA-123", "AA-124", "AA-125", "AA-126"},
{"BB-12", "BB-13"},
{"CC-1"},
};
毕竟,那是最终的实现。它在 Java 中,但该语言可能无关紧要:
long nComb = 1;
for (int iMatr = 0; iMatr < matrix.length; iMatr++)
nComb *= matrix[iMatr].length;
for (int iComb = 0; iComb < nComb; iComb++) {
System.out.print("|");
long nSec = 1;
for (int iSec = 0; iSec < matrix.length; iSec++) {
String[] sec = matrix[iSec];
for (int iAtom = 0; iAtom < sec.length; iAtom++) {
if (iAtom == ((iComb / nSec) % sec.length))
System.out.print(1);
else
System.out.print(0);
}
nSec *= sec.length;
System.out.print("|");
}
System.out.println();
}
我必须将我的逻辑应用于if
它打印 1 或 0。我需要知道数组组合的当前元素(索引)是什么。预期结果:
|1000|10|1|
|0100|10|1|
|0010|10|1|
|0001|10|1|
|1000|01|1|
|0100|01|1|
|0010|01|1|
|0001|01|1|
问候。
编辑:
我在数组迭代中使用另一个变量找到了可能的答案:nSec
. 它在迭代中增加了数组的长度,在最后一次迭代中达到 的值nComb
。