2

我正在浏览一些数独求解器,我正在寻找一个使用回溯的求解器,现在我找到了这段代码,但我不确定它是使用回溯还是其他算法?

帮助表示赞赏。

abstract class SudoKiller {
private SudokuBoard sb;    // Puzzle to solve;

public SudoKiller(SudokuBoard sb) {
    this.sb = sb;
}


private boolean check(int num, int row, int col) {
    int r = (row / sb.box_size) * sb.box_size;
    int c = (col / sb.box_size) * sb.box_size;

    for (int i = 0; i < sb.size; i++) {
        if (sb.getCell(row, i) == num ||
            sb.getCell(i, col) == num ||
            sb.getCell(r + (i % sb.box_size), c + (i / sb.box_size)) == num) {
            return false;
        }
    }
    return true;
}


public boolean guess(int row, int col) {
    int nextCol = (col + 1) % sb.size;
    int nextRow = (nextCol == 0) ? row + 1 : row;

    try {
        if (sb.getCell(row, col) != sb.EMPTY)
            return guess(nextRow, nextCol);
    }
    catch (ArrayIndexOutOfBoundsException e) {
            return true;
    }

    for (int i = 1; i <= sb.size; i++) {
        if (check(i, row, col)) {
            sb.setCell(i, row, col);
            if (guess(nextRow, nextCol)) {
                return true;
            }
        }
    }
    sb.setCell(sb.EMPTY, row, col);
    return false;
}
}

如果这不是回溯,是否有一种简单的方法可以“转换”到它?

整个项目可以在作者网站上找到。

4

1 回答 1

0

看起来它通过递归进行回溯。

在这里,我们向前迈进:

sb.setCell(i, row, col);

在这里我们退后一步:

sb.setCell(sb.EMPTY, row, col);
于 2013-02-17T16:36:29.077 回答