gpt4 book ai didi

java - 在Java中加入四个二维数组

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:32:27 26 4
gpt4 key购买 nike

我正在尝试用 Java 实现 Strassen 算法,我正处于需要将输出组合成单个矩阵/二维数组的步骤。我正在使用 System.arraycopy 复制数组,这很适合以自上而下的方式连接两个数组,但是,我还需要并排连接它们,但我遇到了麻烦接着就,随即。我遇到了 ArrayOutOfBoundsException。这是我的代码

static int[][] Consolidate(int[][] c11, int[][] c12, int[][] c21, int[][] c22) {
/* check size compatibility */
if(c11[0].length == c21[0].length &&
c11.length == c12.length &&
c21.length == c22.length &&
c22[0].length == c12[0].length) {
int _rowSize = c11.length + c21.length;
int _colSize = c11[0].length + c12[0].length;
int[][] retArray = new int[_rowSize][_colSize];

int[][] ltArray = new int[_rowSize][c11[0].length];
int[][] rtArray = new int[_rowSize][c12[0].length];

System.arraycopy(c11, 0, ltArray, 0, c11.length);
System.arraycopy(c21, 0, ltArray, c11.length, c21.length);
System.arraycopy(c12, 0, rtArray, 0, c12.length);
System.arraycopy(c22, 0, rtArray, c12.length, c22.length);

System.arraycopy(ltArray, 0, retArray, 0, ltArray.length);
System.arraycopy(rtArray, 0, retArray, ltArray.length, rtArray.length);
return retArray;
}
return null;
}

最后一行

System.arraycopy(rtArray, 0, retArray, ltArray.length, rtArray.length);

抛出异常。有没有办法并排连接数组(以列方式)?

最佳答案

EDIT 这是经过验证的答案

您可以手动复制最后一部分。

替换

System.arraycopy(ltArray, 0, retArray, 0, ltArray.length);
System.arraycopy(rtArray, 0, retArray, ltArray.length, rtArray.length);

//Commented both calls
//System.arraycopy(ltArray, 0, retArray, 0, ltArray.length);
//System.arraycopy(rtArray, 0, retArray, ltArray.length, rtArray.length);
for (int row = 0; row < ltArray.length; row++) {
int colInTarget = 0;
for (int col = 0; col < ltArray[row].length; col++,colInTarget++) {
retArray[row][colInTarget] = ltArray[row][col];
}
for (int col = 0; col < rtArray[row].length; col++,colInTarget++) {
retArray[row][colInTarget] = rtArray[row][col];
}
}

关于java - 在Java中加入四个二维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12236906/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com