逻辑解算算法(适用于Java中的数独)

时间:2011-03-08 18:53:30

标签: java algorithm sudoku

我的逻辑解算算法存在问题。它很好地解决了大量提示的谜题,只有少于45条线索的谜题存在问题。

这是解决的算法。 Immutable是一个布尔值,用于确定是否可以更改该值。 cell [row] [col] .possibleValues是名为SudokuCell的类中的LinkedList,用于存储该网格元素可能存在的值。 grid.sGrid是拼图的主要int [] []数组。 removeFromCells()是一种从网格的行,列和象限中删除值的方法。该代码进一步提供。

第二个for循环仅用于检查单个解决方案。我决定避免递归,因为我真的无法理解它。这种方法现在似乎运作良好。

public boolean solve(){

    for(int i = 0; i < 81; i++){
        for(int row = 0; row < 9; row++){
            for(int col = 0; col < 9; col++){
                if(!immutable[row][col]){
                    if(cell[row][col].getSize() == 1){
                        int value = cell[row][col].possibleValues.get(0);
                        grid.sGrid[row][col] = value;
                        immutable[row][col] = true;
                        removeFromCells(row, col, value);
                    }
                }
            }
        }
    }


    int i = 0;
    for(int row = 0; row < 9; row++){
        for(int col = 0; col < 9; col++){
            if(grid.sGrid[row][col] == 0){
                i++;
            }
        }
    }

    if(i != 0){
        return false;
    } else{
        return true;
    }
}

这是removeFromCells()

的代码

我认为大部分代码都是不言自明的。第一个for循环从(x,y)的行和列中删除值,第二个循环从象限中删除值。

public void removeFromCells(int x, int y, int value){

    /*
     * First thing to do, find the quadrant where cell[x][y] belong.
     */

    int topLeftCornerRow = 3 * (x / 3) ;
    int topLeftCornerCol = 3 * (y / 3) ;

    /*
     * Remove the values from each row and column including the one
     * where the original value to be removed is.
     */
    for(int i = 0; i < 9; i++){
        cell[i][y].removeValue(value);
        cell[x][i].removeValue(value);
    }


    for(int row = 0; row < 3; row++){
        for(int col = 0; col < 3; col++){
            cell[topLeftCornerRow + row][topLeftCornerCol + col].removeValue(value);
        }
    }
}

另一个问题点可能是构建可能值的位置。这是我的方法:

第一个for循环创建新的SudokuCells以避免可怕的空指针异常。

sGrid中的任何空值都表示为0,因此for循环会跳过这些值。

SudokuBoard的构造函数调用此方法,因此我知道它正在被调用。

public void constructBoard(){

    for(int row = 0; row < 9; row++){
        for(int col = 0; col < 9; col++){
            cell[row][col] = new SudokuCell();
        }
    }

    immutable = new boolean[9][9];

    for(int row = 0; row < 9; row++){
        for(int col = 0; col < 9; col++){
            immutable[row][col] = false;
            if(grid.sGrid[row][col] != 0){
                removeFromCells(row, col, grid.sGrid[row][col]);
                immutable[row][col] = true;
            }
        }
    }
}

我会发布整个文件,但那里有很多不必要的方法。我发布了我认为导致我出现问题的内容。

2 个答案:

答案 0 :(得分:6)

您似乎只构建了一个基于现在解决的简单约束。你需要一个完整的回溯,以解决提示较少的谜题。有些情况下,如果没有回溯,你无法真正解决。

或者你应该尝试实现Knuth的算法(Dancing Links)来解决这类问题。理解和实现比回溯算法更复杂,但运行方式更好:)。见这里:http://en.wikipedia.org/wiki/Dancing_Links

它也是一个更普遍的问题的算法,它被应用于非常成功地解决数独。

在维基百科上,有一篇文章的链接,详细说明了使用约束编程可以解决的实例类型:http://4c.ucc.ie/~hsimonis/sudoku.pdf(从这里找到:http://en.wikipedia.org/wiki/Sudoku_algorithms)。表4非常有趣:)。

答案 1 :(得分:2)

我使用了很多这样的规则来开发我的数独求解器。然而,我总是被迫使用回溯来进行非常困难的sudokus。根据维基百科的说法,只使用规则就无法解决一些滥用问题。

我实施了总共6条规则。

  1. 不允许其他任何值..
  2. 同一部分中没有其他方格允许某个值。
  3. 同一行或列中没有其他正方形允许某个值。
  4. 只允许在一个部分内的一个列或行上使用某个值,因此我们可以从其他部分中的该行或列中删除此值。
  5. 裸体对
  6. 我描述了整个算法并在这两篇博文中给出了代码(初始版本只使用了前4条规则)。

    http://www.byteauthor.com/2010/08/sudoku-solver/

    http://www.byteauthor.com/2010/08/sudoku-solver-update/

    PS。我的算法是针对性能而设计的,所以它会自动平衡回溯与这些规则,即使它有时可以不做任何猜测。