-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsudoku_test_digits.c
245 lines (219 loc) · 10.9 KB
/
sudoku_test_digits.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
/******************************************************************************
* Program: sudoku_test_digits.c
*
* Purpose: Functions for evaluating the sudoku board solution: which digits
* are present and if solution is valid
*
* Developer: Philip Ormand
*
* Date: 5/13/16
*
*****************************************************************************/
#include <memory.h>
#include <stdlib.h>
#include <stdio.h>
#include "sudoku_board.h"
#include "sudoku_test_digits.h"
/**
* Required for the functionality of the generic 'EVALUATE_DIGIT' macro
*/
enum SUDOKU_COLLECTION_TYPE {
// strange capitalization = parallelism with members of DigitsPresent struct
SUDOKU_IS_rows,
SUDOKU_IS_columns,
SUDOKU_IS_blocks,
};
void reportIllegalDigit(int row, int col, int value);
void reportRepeatedDigit(enum SUDOKU_COLLECTION_TYPE type, int row, int col, int block, int value);
void reportBlankSquare(int row, int col);
/**
* Business logic of a single iteration, checking if a single digit is present in a single row,
* column, or block.
*/
#define EVALUATE_DIGIT(type, collectionNumber) \
if (validateSudokuDigit(value)) \
{ \
/* if square is blank */ \
if (value == 0) \
{ \
/* if caller wants printed feedback AND we haven't reported on this square yet */ \
if (verbose && !digitsPresent->squaresIllegalOrBlank[i][j]) \
{ \
reportBlankSquare(i, j); \
} \
\
digitsPresent->squaresIllegalOrBlank[i][j] = true; \
sudokuValid = false; \
} \
/* square has a valid sudoku digit */ \
else \
{ \
currentTestFlag = SUDOKU_TEST_FLAG_SHIFT(value); \
\
/* if SUDOKU_TEST_<caseNumber> flag is set */ \
if (digitsPresent->type[collectionNumber] & currentTestFlag) \
{ \
/* this digit is repeated, so solution is invalid */ \
sudokuValid = false; \
\
/* print feedback message if caller wants it */ \
if (verbose) { \
reportRepeatedDigit(SUDOKU_IS_##type, i, j, k, value); \
} \
} \
/* we haven't encountered this digit yet in the current row */ \
else \
{ \
/* mark the digit as present */ \
digitsPresent->type[collectionNumber] |= currentTestFlag; \
} \
} \
} \
/* illegal sudoku digit */ \
else \
{ \
/* if caller wants printed feedback AND we haven't reported on this square yet */ \
if (verbose && !digitsPresent->squaresIllegalOrBlank[i][j]) \
{ \
reportIllegalDigit(i, j, value); \
} \
\
digitsPresent->squaresIllegalOrBlank[i][j] = true; \
sudokuValid = false; \
}
/**
* Macro to retreive the value of the current sudoku square
*/
#define CURRENT_ITEM board->contents[i][j]
/**
* Populates a DigitsPresent struct with the correct values for the current state of a sudoku board.
* Analyzes sudoku board contents to determine which digits are present in each row, column, and
* block, whether any squares are blank or have illegal values, and whether any digits were repeated
* within a row, column, or block (invalidating the sudoku solution).
*
* @param board Pointer to the SudokuBoard to analyze
* @param digitsPresent Pointer to the DigitsPresent struct that will store the results
* @param verbose If true, results of analysis will be printed to the screen.
*/
void evaluateDigitsPresent(struct SudokuBoard *board, struct DigitsPresent *digitsPresent, bool verbose)
{
int i, j, k = 0, value;
bool sudokuValid = true;
SudokuDigitTestField currentTestFlag = 0;
// reset DigitsPresent member
memset((void*)digitsPresent, 0, sizeof(DigitsPresent));
// rows
for (i = 0; i < SUDOKU_ROW_COUNT; ++i)
{
for (j = 0; j < SUDOKU_COL_COUNT; ++j)
{
value = CURRENT_ITEM;
EVALUATE_DIGIT(rows, i)
}
// at this point, the whole row should be evaluated
if (verbose && digitsPresent->rows[i] != SUDOKU_TEST_ALLDIGITS)
{
// condition is 0 (if-statement fails) if all the same bits are set/unset in current row
// and in SUDOKU_TEST_ALLDIGITS
// contition is non-0 (if-statement succeeds) if there is a bit set in SUDOKU_TEST_ALLDIGITS
// that is not set in current row, meaning there is a digit NOT present in the row
printf("OOPS: row %d doesn't contain all digits from 1 to 9\n", i + 1);
}
}
// columns
for (j = 0; j < SUDOKU_COL_COUNT; ++j)
{
for (i = 0; i < SUDOKU_ROW_COUNT; ++i)
{
value = CURRENT_ITEM;
EVALUATE_DIGIT(columns, j)
}
// at this point, the whole column should be evaluated
if (verbose && digitsPresent->columns[j] != SUDOKU_TEST_ALLDIGITS)
{
printf("OOPS: column %c doesn't contain all digits from 1 to 9\n", colLabels[j]);
}
}
// Blocks
for (k = 0; k < SUDOKU_BLOCK_COUNT; ++k)
{
for (i = (k / SUDOKU_BLOCK_HEIGHT) * SUDOKU_BLOCK_HEIGHT;
i < (k / SUDOKU_BLOCK_HEIGHT) * SUDOKU_BLOCK_HEIGHT + SUDOKU_BLOCK_HEIGHT;
++i)
{
for (j = (k % SUDOKU_BLOCK_WIDTH) * SUDOKU_BLOCK_WIDTH;
j < (k % SUDOKU_BLOCK_WIDTH) * SUDOKU_BLOCK_WIDTH + SUDOKU_BLOCK_WIDTH;
++j)
{
value = CURRENT_ITEM;
EVALUATE_DIGIT(blocks, k)
}
}
// at this point, the whole block should be evaluated
if (verbose && digitsPresent->blocks[k] != SUDOKU_TEST_ALLDIGITS)
{
printf("OOPS: block %d doesn't contain all digits from 1 to 9\n", k + 1);
}
}
if (verbose && sudokuValid)
{
printf("Sudoku solution is valid!\n");
}
}
/**
* Prints feedback to STDOUT, reporting that a square contains an illegal value
* Inner function of 'evaluateDigitsPresent'
*
* @param row Index of square's row
* @param col Index of square's column
* @param value Square's current value, which is illegal
*/
inline void reportIllegalDigit(int row, int col, int value)
{
printf("OOPS: the value '%d' is not a legal sudoku number (%c%d)\n", value, colLabels[col], row + 1);
}
/**
* Prints feedback to STDOUT, reporting that a square contains a digit repeated elsewhere in its row,
* colulmn, or block.
* Inner function of 'evaluateDigitsPresent'
*
* @param type Reporting problem with a row, column, or block?
* @param row Index of square's row
* @param col Index of square's column
* @param block Index of square's block
* @param value Square's current value, which is illegal
*/
inline void reportRepeatedDigit(enum SUDOKU_COLLECTION_TYPE type, int row, int col, int block, int value)
{
printf("OOPS: the digit '%d' was repeated in ", value);
// different message, depending on if we're testing a row, column, or block
switch (type)
{
case SUDOKU_IS_rows:
printf("row %d ", row + 1);
break;
case SUDOKU_IS_columns:
printf("column %c ", colLabels[col]);
break;
case SUDOKU_IS_blocks:
printf("block %d ", block + 1);
break;
default:
// there should never be a default case, because 'type' is an enum value
puts("...just kidding. Something went terribly wrong.");
break;
}
// print coordinates of the square in question
printf("(%c%d)\n", colLabels[col], row + 1);
}
/**
* Prints feedback to STDOUT, reporting that a square is blank.
* Inner function of 'evaluateDigitsPresent'
*
* @param row Index of square's row
* @param col Index of square's column
*/
inline void reportBlankSquare(int row, int col)
{
printf("OOPS: square %c%d is blank\n", colLabels[col], row + 1);
}