我开始了一个项目,试图创建一个 Ken Ken 拼图。如果您不确定 Ken Ken 是什么,它与 Sudoku 的相似之处在于行或列中不能有重复的整数值。
我正在尝试使用为每个新行创建的数组列表中的数字填充二维数组。我检查从数组列表中获取的数字是否与它自己的行和列中的任何数字不匹配。
当我运行我的代码时,当我尝试从列表中删除整数值时,我得到一个“索引超出范围”异常。我不确定为什么会发生这种情况,因为我认为我得到了正确的元素。
这是我的代码:
int GRID_SIZE = 4;
int[][] grid = new int[GRID_SIZE][GRID_SIZE];
List<Integer> nums = new ArrayList<Integer>();
private void populateGrid() {
for (int row = 0; row < GRID_SIZE; row ++) {
// Creates an array of values from 1 to grid size.
for (int i = 1; i <= GRID_SIZE; i++) nums.add(i);
for (int col = 0; col < GRID_SIZE; col++) {
while (nums.size() > 0) {
// Gets a random number from the Array List
int ranNum = nums.get(numGen.nextInt(GRID_SIZE));
// Checks to see if the number is placeable.
if (canPlace(ranNum, row, col)) {
// Places the number in the 2D Array
grid[row][col] = ranNum;
break;
} else {
// Removes duplicate element from the Array List.
nums.remove(ranNum); <------{Index Out Of Bounds Exception]
}
}
}
}
}
private boolean canPlace(int ranNum, int row, int col) {
for (int i = 0; i < GRID_SIZE; i++) {
// Checks if the specified number is already in the row/column.
if (grid[col][i] == ranNum) return false;
if (grid[i][row] == ranNum) return false;
}
return true;
}
我对此有几个问题:
首先,为什么我会收到我的错误?
其次,有什么比 2D Array 更好的用于网格和放置数字的方式?
最后,我是否正确使用了休息?
提前感谢您的回答。