随机生成一个数独与一个不完整数独

代码

public class Sudoku {

    public static void main(String[] args) {
        int[][] done = create();
        int[][] problem = getProblemSudoku(done);
        System.out.println("============================= 未完成的数独 =============================");
        for (int i = 0; i < 9; i++) {
            System.out.println(Arrays.toString(problem[i])
                    .replace("[", "")
                    .replace("]", "")
                    .replace(",", " ")
                    .replace("0", " "));
        }
        System.out.println("============================= 答案在下面 =============================");
        System.out.println("=================================||================================");
        System.out.println("=================================||=================================");
        System.out.println("=================================\\/=================================");

        for (int i = 0; i < 9; i++) {
            System.out.println(Arrays.toString(done[i]).replace("[", "").replace("]", "").replace(",", " "));
        }
    }

    private static int[][] getProblemSudoku(int[][] sudoku) {
        int[][] problemSudoku = new int[9][9];
        for (int i = 0; i < 9; i++) {
            for (int j = 0; j < 9; j++) {
                problemSudoku[i][j] = sudoku[i][j];
            }
        }

        // 删掉部分
        for (int i = 0; i < 60; i++) {
            int index1 = (int) (Math.random() * (problemSudoku.length));
            int index2 = (int) (Math.random() * (problemSudoku.length));
            problemSudoku[index1][index2] = 0;
        }
        return problemSudoku;
    }

    /**
     * Description : 随机生成完整数独
     *
     * @param
     * @return void
     * @date 2020/9/3 16:02
     */
    public static int[][] create() {
        int[][] sudoku = new int[9][9];
        sudoku[0] = new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9};
        reSort(sudoku[0]);
        for (int i = 1; i < 9; i++) {
            for (int j = 0; j < 9; j++) {
                sudoku[i][j] = sudoku[i - 1][(j + 1) / 9 == 1 ? 0 : j + 1];
            }
        }
        int[][] results = new int[9][9];
        for (int i = 0; i < 9; i++) {
            for (int j = 0; j < 9; j++) {
                results[j / 3 + 3 * (i % 3)][j % 3 + 3 * (i / 3)] = sudoku[i][j];
            }
        }
        // 竖向打乱
        rowResort(results);
        // 横向打乱
        colResort(results);
        return results;
    }

    /**
     * Description : 获取随机基列
     *
     * @param arr
     * @return void
     * @date 2020/9/3 16:03
     */
    public static void reSort(int[] arr) {
        // 20次打乱
        for (int i = 0; i < 20; i++) {
            int index1 = (int) (Math.random() * (arr.length - 1) + 1);
            int index2 = (int) (Math.random() * (arr.length - 1) + 1);
            int temp = arr[index1];
            arr[index1] = arr[index2];
            arr[index2] = temp;
        }
    }

    /**
     * Description : 打乱初始数独(竖向)
     *
     * @param arr
     * @return void
     * @date 2020/9/3 16:04
     */
    public static void rowResort(int[][] arr) {
        // 10次打乱
        for (int i = 0; i < 10; i++) {
            int index1 = (int) (Math.random() * (arr.length - 1) + 1);
            int index2 = (int) (Math.random() * 2 + 1) + 3 * (index1 / 3);
            int[] temp = arr[index1];
            arr[index1] = arr[index2];
            arr[index2] = temp;
        }
    }

    /**
     * Description : 打乱初始数独(横向)
     *
     * @param arr
     * @return void
     * @date 2020/9/3 16:04
     */
    public static void colResort(int[][] arr) {
        // 10次打乱
        for (int i = 0; i < 10; i++) {
            int index1 = (int) (Math.random() * (arr.length - 1) + 1);
            int index2 = (int) (Math.random() * 2 + 1) + 3 * (index1 / 3);
            for (int j = 0; j < 9; j++) {
                int temp = arr[j][index1];
                arr[j][index1] = arr[j][index2];
                arr[j][index2] = temp;
            }
        }
    }
}

执行结果

============================= 未完成的数独 =============================
1  9  7     8        4   
   5              9     7
   6  2                  
   2  1  8  9  7  3  5  4
   7     4        2      
   3     1           9  8
7           3  4  1      
   4  6     2           5
   1     5     8         
============================= 答案在下面 =============================
=================================||================================
=================================||=================================
=================================\/=================================
1  9  7  3  8  5  6  4  2
8  5  3  2  4  6  9  1  7
4  6  2  7  1  9  5  8  3
6  2  1  8  9  7  3  5  4
9  7  8  4  5  3  2  6  1
5  3  4  1  6  2  7  9  8
7  8  5  6  3  4  1  2  9
3  4  6  9  2  1  8  7  5
2  1  9  5  7  8  4  3  6

Process finished with exit code 0
一、数独说明:数独由九行,九列组成,又分为顺序排列的九宫。每行、每列及每宫都包含九个格,九个格中填放1到9的不重复的数字。 二、自动计算原理(三步法): 1、基础法:找出空格中唯一可填的数字。方法是,先假设某空格中可填入九个数字,然后去掉所在行、所在列、所在宫中的已有数字。余下如果是唯一一个数字,那么这个数字就是结果 2、找唯一法:例如果某行、某列或某宫中只剩一个空格,那么九个数字中缺少的那个就是结果。 3、求唯余法:对于存在多个可能值的空格,循环取其中一个作为假设值,然后反复利用方法1和方法2去测试,如果出错冲突或导致别的空格无值可填时,说明假设的值是错误的。并对别剩余未找到唯一值的空格进行同样操作,直至找到可行的一个方案。 三、自动出题,是自动求解的反向过程,先给出答案,再组合题目: 1、数独难易程度跟数独已知的数字个数有一定关系,但不是必然关系。可分为四级,根据网友“数独难度分级”的文章https://wenku.baidu.com/view/af550ed51a37f111f1855ba0.html,结果是分布在0到1之间的一系列值,值越少越容易。 2、出题时,先利用随机数往81个空格中填入不冲突的值。方法是,因为对角线的三宫中的数字互不干扰,用随机数填充这三宫,然后根据数独规则要求随机填入另外六宫。 3、这是最终结果,然后根据难易要求,随机将结果中的一定数量(可以用随机数)的方格清空。数独题已经形成。再根据网友提供的级别计算公式,计算形成的数独题的难易程度是否符合要求。(此时的数独答案不是唯一的) 4、难易程度具体计算公式是:两个空格所有可能值如果有依赖关系值为1,没依赖关系值为0。如此汇总所有空格之间的关系值为A,再除以空格个数B的18倍。即A/(18*B)。0—0.25为0级,0.25—0.5为1级,0.5—0.75为2级,0.75—1为3组。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值