1 Star 0 Fork 0

alanlovesy/SuDuKu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SD_main.cpp 931 Bytes
一键复制 编辑 原始数据 按行查看 历史
alanlovesy 提交于 2020-11-28 09:02 . 简单的测试提交
/*数独解算主程序*/
/*alanpo*/
#include<iostream>
#include<ctime>
#include"SD_class.h"
#include"SD_ver.h"
using namespace std;
int SD_C::Count = 0; //初始化类SD_C中的静态成员count,TODO目前该静态成员尚未运用
/**************
* 主函数
* ***********/
int main()
{
SD_C SD; //声明新的SD_C对象SD
// //已知数独初盘,进行求解
// SD.Init_q(); //初始化SD.q
// SD.Print_q(1); //打印q
// SD.Init_s(); //初始化SD.s
// TIME_0 = clock(); //记录当前系统时间
// SD.SolveAll(1); //使用唯一法和唯余法解题
SD.SolveNewSD(); //生成新的数独终盘
SD.NewUnknowSD(); //挖空生成新数独题
SD.SimpleInit_s();
SD.SolveAll(1);
getchar();
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/alanlovesy/sd.git
git@gitee.com:alanlovesy/sd.git
alanlovesy
sd
SuDuKu
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385