gpt4 book ai didi

java - 如何获取二维数组的一部分?

转载 作者:太空宇宙 更新时间:2023-11-04 14:19:39 25 4
gpt4 key购买 nike

假设我有一个像

这样的 4x4 数组矩阵
aaaa
abba
abba
aaaa

我可以从上面的矩阵中获取一个 3x3 矩阵并将其存储在另一个 2d 数组中吗? 3x3 矩阵应包含元素

aaa
abb
abb

同样

aaa
bba
bba

还有另外两个矩阵。

可以使用 Arrays.copyOfRange 来完成吗??

编辑:我还想要其他 2 个 3x3 矩阵。

abb
abb
aaa

bba
bba
aaa

就像我传递 2x2 矩阵中的元素(即 4x4 矩阵中的元素)一样。 b's ,它应该给我一个围绕元素的 3x3 矩阵。

我可以通过使用 for 循环来实现这一点,该循环通过从我传递的元素(此处为“b”)的索引中减去 1 来获取 i 和 j 值,这会产生围绕该值的 3x3 矩阵b(上面给出)。但只是想知道是否有更简单的方法。

最佳答案

我会使用 System.lang.arrayCopy:

import java.util.Arrays;

public class ArrayRange {

public static void main(String[] args) {

char[][] original = createMatrix(4);

// copy 3x3 array starting at 1,0
char[][] subArray = copySubrange(original, 1, 0, 3, 3);

printArray(original);
printArray(subArray);
}

private static char[][] copySubrange(char[][] source, int x, int y, int width, int height) {
if (source == null) {
return null;
}
if (source.length == 0) {
return new char[0][0];
}
if (height < 0) {
throw new IllegalArgumentException("height must be positive");
}
if (width < 0) {
throw new IllegalArgumentException("width must be positive");
}
if ((y + height) > source.length) {
throw new IllegalArgumentException("subrange too high");
}
char[][] dest = new char[height][width];
for (int destY = 0; destY < height; destY++) {
char[] srcRow = source[(y + destY)];
if ((x + width) > srcRow.length) {
throw new IllegalArgumentException("subrange too wide");
}
System.arraycopy(srcRow, x, dest[destY], 0, width);
}
return dest;
}

// Set up a matrix as an array of rows.
// The y-coordinate is the position of a row in the array.
// The x-coordinate is the position of an element in a row.
private static char[][] createMatrix(int size) {
char[][] original = new char[size][size];
for (int y = 0; y < original.length; y++) {
for (int x = 0; x < original[0].length; x++) {
original[y][x] = (char) (Math.random() * 10 + 48);
}
}
return original;
}

private static void printArray(char[][] array) {
for (int y = 0; y < array.length; y++) {
System.out.println(Arrays.toString(array[y]));
}
System.out.println();
}
}

示例输出:

[0, 7, 4, 3]
[9, 2, 7, 2]
[9, 2, 4, 0]
[9, 1, 5, 9]

[7, 4, 3]
[2, 7, 2]
[2, 4, 0]

编辑:通过范围检查改进代码。

关于java - 如何获取二维数组的一部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27343663/

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