-
Notifications
You must be signed in to change notification settings - Fork 0
/
cellFunctions.c
280 lines (238 loc) · 7.39 KB
/
cellFunctions.c
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
//
// Created by Jamie on 05/12/2017.
//
#include <stdio.h>
#include "global.h"
#include "dangerousCellFunctions.h"
extern int steps;
/**
* Returns if a cell can be written to or not
*
* @param p Sudoku pointer
* @param cell Cell
* @return If cell can be written to
*/
int canCellWright(int ***p, Cell cell) {
return p[cell.column][cell.row][0] == 0;
}
/**
* Initially sets up a cell to be calculated
*
* @param p Sudoku pointer
* @param cell Cell
*/
void setInitialUnknown(int ***p, Cell cell) {
p[cell.column][cell.row][0] = -1;
}
/**
* Sets all values of the given cell to possible
*
* @param p Sudoku pointer
* @param cell Cell
*/
void setupSuggestions(int ***p, Cell cell) {
if (p[cell.column][cell.row][0] == -1) {
p[cell.column][cell.row][0] = 0;
for (int i = 1; i <= size; i++) {
p[cell.column][cell.row][i] = 1;
}
}
}
/**
* Sets cell to initial value with wright protection
*
* @param p Sudoku pointer
* @param cell Cell
* @param number Cell value
*/
void setInitialValue(int ***p, Cell cell, int number) {
p[cell.column][cell.row][0] = 1; // Wright protect 1= setup value 2= final calculated value
p[cell.column][cell.row][number] = 1;
}
/**
* Sets cell to final calculated value with wright protection
*
* @param p Sudoku pointer
* @param cell Cell
* @param number Cell value
*/
void setFinalCalculatedValue(int ***p, Cell cell, int number) {
clearCellOfOtherValues(p, cell, number);
clearRegionOfFinalValue(p, cell, number);
if (p[cell.column][cell.row][0] != 1) {
p[cell.column][cell.row][0] = 2; // Wright protect 1= setup value 2= final calculated value
}
p[cell.column][cell.row][number] = 1;
if (debug) {
printf("Set cell %i %i to final value of %i\n", cell.column, cell.row, number);
}
}
/**
* Clears the cell of other value
*
* @param p Sudoku pointer
* @param cell Cell
* @param number Cell value
*/
void clearCellOfOtherValues(int ***p, Cell cell, int number) {
for (int i = 1; i <= size; i++) {
if (i != number) {
eliminatePossibleFromCell(p, cell, i);
}
}
}
/**
* Clears the column, row and block the cell is in of the number (should only be used on final values)
*
* @param p Sudoku pointer
* @param cell Cell
* @param number Cell value
*/
void clearRegionOfFinalValue(int ***p, Cell cell, int number) {
Block block;
setBlockForCell(&block, cell);
eliminatePossibleFromColumn(p, cell.column, number);
eliminatePossibleFromRow(p, cell.row, number);
eliminatePossibleFromBlock(p, block, number);
}
/**
* Updates a block with the block column and row values using a pointer to the block and a cell in the block
*
* @param block Block pointer
* @param cell Cell in block
*/
void setBlockForCell(Block *block, Cell cell) {
block->blockColumn = (cell.column - (cell.column % sizeRoot)) / sizeRoot;
block->blockRow = (cell.row - (cell.row % sizeRoot)) / sizeRoot;
}
/**
* Removes a value as being suggested in a cell
*
* @param p Sudoku pointer
* @param cell Cell
* @param number Number altering
*/
void eliminatePossibleFromCell(int ***p, Cell cell, int number) {
if (canCellWright(p, cell)) {
if (p[cell.column][cell.row][number] == 1) {
p[cell.column][cell.row][number] = 0;
if (debug) {
printf("Removed suggestion of %i in cell %i %i \n", number, cell.column, cell.row);
}
suggestionsInCell(p, cell);
}
}
}
/**
* Returns the number of suggestions for a cell. If the cell has a final value returns -1 and sets wright protection;
*
* @param p Sudoku pointer
* @param cell Cell
* @return Number of suggestions for the cell
*/
int suggestionsInCell(int ***p, Cell cell) {
if (canCellWright(p, cell)) {
int suggestions = 0;
int lastSuggestion = 0;
for (int i = 1; i <= size; i++) {
if (p[cell.column][cell.row][i] == 1) {
suggestions++;
lastSuggestion = i;
}
}
if (suggestions == 1) {
setFinalCalculatedValue(p, cell, lastSuggestion);
steps++;
if (outputSolveSteps) {
printf("[Step %i]: Found and solved naked single at cell %i, %i. Setting value to %i \n", steps, cell.column, cell.row, lastSuggestion);
}
}
return suggestions;
}
return -1;
}
/**
* Returns the number of cells in the column with this suggestion. Returns -1 if a cell has this value.
*
* @param p Sudoku pointer
* @param column Column to check
* @param number Number to check
* @return Number of cells in row with this suggestion
*/
int cellsWithSuggestionInColumn(int ***p, int column, int number) {
Cell cell;
cell.column = column;
int possiblePlaces = 0;
for (int row = 0; row < size; row++) {
cell.row = row;
if (findFinalCellValue(p, cell) == number) {
return -1;
} else if (p[column][row][number] == 1) {
possiblePlaces++;
}
}
return possiblePlaces;
}
/**
* Returns the number of cells in the row with this suggestion. Returns -1 if a cell has this value.
*
* @param p Sudoku pointer
* @param row Row to check
* @param number Number to check
* @return Number of cells in row with this suggestion
*/
int cellsWithSuggestionInRow(int ***p, int row, int number) {
Cell cell;
cell.row = row;
int possiblePlaces = 0;
for (int column = 0; column < size; column++) {
cell.column = column;
if (findFinalCellValue(p, cell) == number) {
return -1;
} else if (p[column][row][number] == 1) {
possiblePlaces++;
}
}
return possiblePlaces;
}
/**
* Returns the number of cells in the block with this suggestion. Returns -1 if a cell has this value.
*
* @param p Sudoku pointer
* @param block Block
* @param number Number to check
* @return Number of cells in block with this suggestion
*/
int cellsWithSuggestionInBlock(int ***p, Block block, int number) {
Cell cell;
int possiblePlaces = 0;
for (int columnOffset = 0; columnOffset < sizeRoot; columnOffset++) {
cell.column = (block.blockColumn * sizeRoot) + columnOffset;
for (int rowOffset = 0; rowOffset < sizeRoot; rowOffset++) {
cell.row = (block.blockRow * sizeRoot) + rowOffset;
if (findFinalCellValue(p, cell) == number) {
return -1;
} else if (p[cell.column][cell.row][number] == 1) {
possiblePlaces++;
}
}
}
return possiblePlaces;
}
/**
* Returns the value of a cell if known and 0 if cell is not yet known.
*
* @param p Sudoku pointer
* @param cell Cell
* @return Value of this cell
*/
int findFinalCellValue(int ***p, Cell cell) {
if (p[cell.column][cell.row][0] != 0) {
for (int option = 1; option <= size; option++) {
if (p[cell.column][cell.row][option] == 1) {
return option;
}
}
}
return 0;
}