• JAVA:实现Sudoku数独算法(附完整源码)


    JAVA:实现Sudoku数独算法

    package com.thealgorithms.others;
    
    class Sudoku {
    
        public static boolean isSafe(int[][] board,
                int row, int col,
                int num) {
            // Row has the unique (row-clash)
            for (int d = 0; d < board.length; d++) {
    
                // Check if the number we are trying to
                // place is already present in
                // that row, return false;
                if (board[row][d] == num) {
                    return false;
                }
            }
    
            // Column has the unique numbers (column-clash)
            for (int r = 0; r < board.length; r++) {
    
                // Check if the number
                // we are trying to
                // place is already present in
                // that column, return false;
                if (board[r][col] == num) {
                    return false;
                }
            }
    
            // Corresponding square has
            // unique number (box-clash)
            int sqrt = (int) Math.sqrt(board.length);
            int boxRowStart = row - row % sqrt;
            int boxColStart = col - col % sqrt;
    
            for (int r = boxRowStart;
                    r < boxRowStart + sqrt; r++) {
                for (int d = boxColStart;
                        d < boxColStart + sqrt; d++) {
                    if (board[r][d] == num) {
                        return false;
                    }
                }
            }
    
            // if there is no clash, it's safe
            return true;
        }
    
        public static boolean solveSudoku(
                int[][] board, int n) {
            int row = -1;
            int col = -1;
            boolean isEmpty = true;
            for (int i = 0; i < n; i++) {
                for (int j = 0; j < n; j++) {
                    if (board[i][j] == 0) {
                        row = i;
                        col = j;
    
                        // We still have some remaining
                        // missing values in Sudoku
                        isEmpty = false;
                        break;
                    }
                }
                if (!isEmpty) {
                    break;
                }
            }
    
            // No empty space left
            if (isEmpty) {
                return true;
            }
    
            // Else for each-row backtrack
            for (int num = 1; num <= n; num++) {
                if (isSafe(board, row, col, num)) {
                    board[row][col] = num;
                    if (solveSudoku(board, n)) {
                        // print(board, n);
                        return true;
                    } else {
                        // replace it
                        board[row][col] = 0;
                    }
                }
            }
            return false;
        }
    
        public static void print(
                int[][] board, int N) {
    
            // We got the answer, just print it
            for (int r = 0; r < N; r++) {
                for (int d = 0; d < N; d++) {
                    System.out.print(board[r][d]);
                    System.out.print(" ");
                }
                System.out.print("\n");
    
                if ((r + 1) % (int) Math.sqrt(N) == 0) {
                    System.out.print("");
                }
            }
        }
    
        // Driver Code
        public static void main(String args[]) {
    
            int[][] board = new int[][]{
                {3, 0, 6, 5, 0, 8, 4, 0, 0},
                {5, 2, 0, 0, 0, 0, 0, 0, 0},
                {0, 8, 7, 0, 0, 0, 0, 3, 1},
                {0, 0, 3, 0, 1, 0, 0, 8, 0},
                {9, 0, 0, 8, 6, 3, 0, 0, 5},
                {0, 5, 0, 0, 9, 0, 6, 0, 0},
                {1, 3, 0, 0, 0, 0, 2, 5, 0},
                {0, 0, 0, 0, 0, 0, 0, 7, 4},
                {0, 0, 5, 2, 0, 6, 3, 0, 0}
            };
            int N = board.length;
    
            if (solveSudoku(board, N)) {
                // print solution
                print(board, N);
            } else {
                System.out.println("No solution");
            }
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
  • 相关阅读:
    嵌入式系统软件开发环境_3.主要功能和典型产品
    【宠粉赠书】科技图表绘制:R语言数据可视化
    Linux系统后门监测工具chkrootkit安装与使用
    2022牛客多校3补题
    掌握Python爬虫实现网站关键词扩展提升曝光率
    一生一芯18——Chisel模板与Chisel工程构建
    VUE3.0+Antdv+Asp.net WebApi开发学生信息管理系统(完)
    IPv6 OSPFv3 和区域认证【下一代互联网05】
    1-k8s集群安装报错CGROUPS_CPU: missing
    【OPENVX】对象基本使用之vx_matrix
  • 原文地址:https://blog.csdn.net/it_xiangqiang/article/details/126314730