-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGlobal.h
63 lines (51 loc) · 1.39 KB
/
Global.h
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
//
// Created by PC on 2019/2/27.
//
#ifndef WORKSHOP_GLOBAL_H
#define WORKSHOP_GLOBAL_H
#include <iostream>
#include <fstream>
#include <ctime>
using namespace std;
#define TRUE 1
#define FALSE 0
#define ROW 9
#define COL 9
#define NoAnwser -1
typedef int status;
typedef struct DataNode {
int data = 0;
DataNode *next{};
}DataNode;
typedef struct HeadNode {
int Num = 0;
DataNode *right{};
HeadNode *down{};
}HeadNode;
struct consequence {
int value = -1;//存真值 真时为true-1,假时为false-0
};
struct conse {
int num = 0;
int value = -1;//存真值 真时为true-1,假时为false-0
};
void Start();
HeadNode* CreateClause(int &,string &);
status DPLL(HeadNode *LIST,consequence *result);
HeadNode* IsSingleClause(HeadNode*);
status IsEmptyClause(HeadNode*);
HeadNode* ADDSingleClause(HeadNode*,int);
HeadNode* Duplication(HeadNode*);
void DeleteHeadNode(HeadNode*,HeadNode*&);
void DeleteDataNode(int,HeadNode*&);
void show(struct consequence *,int);
int Digit(int a[][COL], int i, int j);
void randomFirstRow(int a0[], int n);
void createSudoku(int a[][COL]);
void createStartinggrid(const int a[][COL], int b[][COL], int numDigits);
void print(const int a[][COL]);
string ToCnf(int a[][COL],int holes);
string createSudokuToFile();
status SudoDPLL(HeadNode *LIST,conse *result,int VARNUM);
void SudokuShow(conse *result,int VARNUM);
#endif //WORKSHOP_GLOBAL_H