You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# 数独问题
> 潘羽涵
**belongs to Group27**
GMs:张希晋 王逸铎 潘羽涵 周原驰(L) 赵恒 易煜轩
## main
|文件|内容|
|:-:|:-:|
|all.c| 填充任务, m4|
|all.h |全部头文件|
|format.c| 格式化输出,m1|
|generate.c| 生成,m2|
|judge.c| 判别,m3|
|fill.c| 填充,m4|
说明: fill.c填充的是随机数独, 由于无法平衡搜索数的大小与随机数独的合法率, 可以选择中自取数独进行测试。
## details
Sudoku 是一个内含有`int[9][9]`结构体
tag 是一个`int[9][9]`,里面每一个`int`储存的是一个二进制状态,表示该位置上填入[0-9]之间的数,**分别**是可以的还是不可以的
以sudoku 开头的函数均与suduko相关~~(废话)~~
~~以ptr 开头函数用于管理内存~~
以tag 开头的函数用于修改标签状态
## algorithm
见洛谷原题题解:
https://www.luogu.com.cn/problem/solution/P1784
其中的同类方法:
https://www.luogu.com.cn/blog/Always1/solution-p1784
https://www.luogu.com.cn/blog/infinity-dimension/Sudoku