sudoku-solver[填充数独]

题目描述

Write a program to solve a Sudoku puzzle by filling the empty cells.
Empty cells are indicated by the character'.'.
You may assume that there will be only one unique solution.

填充前

A sudoku puzzle...

填充后
  • 思路
    填充数独。
    设置返回值用于标记是否已找到最终的结果并一步一步返回递归出口。
public class Solution {
    public void solveSudoku(char[][] board) {
        if(board == null || board[0].length == 0)
            return ;

        boolean[][] row = new boolean[10][10];
        boolean[][] col = new boolean[10][10];
        boolean[][] fix = new boolean[10][10];
        for(int i=0; i<board.length; i++){
            for(int j=0; j<board[0].length; j++){
                if(board[i][j] != '.'){
                    int ch = board[i][j] - '0';
                    row[i][ch] = true;
                    col[j][ch] = true;
                    int cnt = i/3*3 + j/3;
                    fix[cnt][ch] = true;
                }
            }
        }

        getAns(board, 0, 0, row, col, fix);
    }

    public boolean getAns(char[][] map, int n, int m,
                       boolean[][] row, boolean[][] col, boolean[][] fix){
        if(m >= 9){
            m = 0;
            n ++;
        }
        if(n >= 9)
            return true;

        if(map[n][m] != '.'){
            return getAns(map, n, m+1, row, col, fix);
        }else{
            for(int i=1; i<=9; i++){
                int cnt = n/3*3 + m/3;
                if(row[n][i] || col[m][i] || fix[cnt][i])
                    continue;
                map[n][m] = (char)('0' + i);
                row[n][i] = true;
                col[m][i] = true;
                fix[cnt][i] = true;

                if(getAns(map, n, m+1, row, col, fix))
                    return true;

                map[n][m] = '.';
                row[n][i] = false;
                col[m][i] = false;
                fix[cnt][i] = false;
            }
        }
        return false;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值