我正在寻求实现一个非常简单的算法,该算法使用蛮力回溯来解决数独网格。我面临的问题是,在我的实现中,我为一个Sudoku
名为row
and的类包含了两个实例变量col
,它们对应于表示数独网格的二维数组中空单元格的行和列。
当我的solve()
方法执行时,它首先检查是否没有任何空单元格,在这种情况下,拼图已经完成。否则,相同的方法将空单元格的行和列分配给实例变量row
和包含网格col
的对象。Sudoku
然后,for循环通过方法调用验证哪个数字可以放在那个空单元格中isSafe(int n)
(这个方法检查是否满足拼图的约束,我可以保证它完美地运行)。因此,该isSafe()
方法在空单元格中放置一个数字,然后在对象solve()
上再次递归调用该方法。Sudoku
如果我们遇到了一个无法满足的约束,那么我们将 a 重新分配0
给最后一个row
并被col
填充。这就是发现问题的地方!由于程序不断更新row
和col
变量,因此每次递归调用都会丢失旧实例。我一直在试图弄清楚如何存储这些值,以便程序在回溯时可以撤消操作。我想过将每个col
和推row
入堆栈,但我真的不知道该去哪里。
有人能告诉我解决这个问题的简单方法是什么吗?我不包括整个班级,如果您认为这会有所帮助,请告诉我,我会发布它。
class Sudoku {
int SIZE, N, row, col;
int Grid[][];
public boolean solve() {
if (!this.findNextZero()) return true;
for (int num = 1; num <= 9; num++) {
if (isSafe(num)) {
this.Grid[this.row][this.col] = num;
if (this.solve()) return true;
this.Grid[this.row][this.col] = 0;
// this.Grid[oldRow][oldCol] = 0;
}
}
return false;
}
public boolean findNextZero() {
for (int i = 0; i < this.N; i++) {
for (int j = 0; j < this.N; j++) {
if (this.Grid[i][j] == 0) {
this.row = i;
this.col = j;
return true;
}
}
}
return false;
}
public boolean isSafe(int num) {
return !this.usedInRow(num)
&& !this.usedInColumn(num)
&& !this.usedInBox(num);
}
如果我要实现一个堆栈,以下是否有意义?在findNextZero()
操作之后将row
和col
整数推入堆栈。继续这样做,然后修改以下代码行
this.Grid[this.row][this.col] = 0;
类似于
this.Grid[s.pop][s.pop] = 0;
这是一个合理的方法吗?