我有一个由任何整数 N 动态创建的 2D 数组。最初,我需要将数组中的所有值设置为表示它“未初始化”的值,其中我使用数字“-1”。但是,我想将此二维数组转换为一维数组并将每个值分配为等于其在新一维数组中的索引。
public class Percolation {
private int[][] id;
private int[] array1D;
private int blocked = -1; //a number that doesn't exist in the array
// create N-by-N grid, with all sites blocked
public Percolation(int N){
id = new int[N][N];
for (int k = 0; k < N; k++)
{ for (int i = 0; i < N; i++) id[k][i] = blocked; }
}
// open site (row i, column j) if it is not already
public void open(int i, int j){
}
在 open 方法中,它应该将给定索引处的值更改为一维数组中的相应索引。例如:
[-1] [-1]
[-1] [-1]
然后会变成:
[0] [1] [2] [3]
不幸的是,由于这是家庭作业,我不确定如何共享网格大小“N”以便能够创建一个以索引为值的新一维数组。