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.
po79yr3at c0d2316ed4
Update fill.c
1 year ago
README.md Update README.md 1 year ago
all.c Update all.c 1 year ago
all.h Update all.h 1 year ago
fill.c Update fill.c 1 year ago
format.c ADD file via upload 1 year ago
generate.c Update generate.c 1 year ago
judge.c Update judge.c 1 year ago

README.md

数独问题

潘羽涵

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