-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsudoku.hpp
196 lines (174 loc) · 4.81 KB
/
sudoku.hpp
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
#include <fstream>
#include <iostream>
#include <sstream>
#include <stdexcept>
#include <math.h> //sqrt
#include <string.h> //memcpy
template <typename T, unsigned N>
Sudoku<T, N>::Sudoku()
: _CurrentDigit((T*)_Grid)
{
float const f = sqrt(N);
if (f*f != N) throw std::runtime_error("N must be a perfect square");
_BlockSize = static_cast<unsigned>(f);
}
template <typename T, unsigned N>
Sudoku<T,N>::Sudoku(Sudoku const & s)
{
_BlockSize = s._BlockSize;
memcpy(_Grid, s._Grid, N*N*sizeof(T));
_CurrentDigit = (T*)_Grid + (s._CurrentDigit - (T*)s._Grid);
}
template <typename T, unsigned N>
void Sudoku<T, N>::read_from_file(std::string const & filename)
{
std::ifstream file(filename.c_str());
if (!file) {
throw std::runtime_error("read_from_file: cannot open file " + filename);
}
std::string line;
std::istringstream iss;
unsigned nb_lines_read = 0;
while (getline(file, line)) {
if (++nb_lines_read > N) {
std::ostringstream oss;
oss << "read_from_file: too many lines: ";
oss << nb_lines_read;
throw std::runtime_error(oss.str());
}
iss.clear();
iss.str(line);
unsigned nb_digit = 0;
char digit;
while (iss >> digit) {
if (++nb_digit > N) {
std::ostringstream oss;
oss << "read_from_file: too many digits (";
oss << nb_digit;
oss << ") on line #";
oss << nb_lines_read;
throw std::runtime_error(oss.str());
}
if (isdigit(digit)) {
digit -= '0';
} else {
digit = 0;
}
_Grid[nb_lines_read - 1][nb_digit - 1] = digit;
}
if (nb_digit < N) {
std::ostringstream oss;
oss << "read_from_file: too few digits (";
oss << nb_digit;
oss << ") on line #";
oss << nb_lines_read;
throw std::runtime_error(oss.str());
}
}
if (nb_lines_read < N) {
std::ostringstream oss;
oss << "read_from_file: too few lines: ";
oss << nb_lines_read;
throw std::runtime_error(oss.str());
}
// Look for the first missing digit
for (unsigned L = 0; L < N; ++L) {
for (unsigned C = 0; C < N; ++C) {
if (_Grid[L][C] == 0) {
_CurrentDigit = ((T*)_Grid) + (L*N + C);
goto first_missing_digit_found;
}
}
}
first_missing_digit_found:
(void)_CurrentDigit;
}
template <typename T, unsigned N>
void Sudoku<T, N>::write_to_file(std::string const & filename)
{
std::ofstream file(filename.c_str());
if (file) {
file << (*this);
} else {
std::runtime_error("write_to_file:: cannot open file " + filename);
}
}
template <typename T, unsigned N>
std::ostream & operator << (std::ostream & os, Sudoku<T, N> const & s)
{
for (unsigned L = 0; L < N; ++L) {
for (unsigned C = 0; C < N; ++C) {
os << s._Grid[L][C] << " ";
}
os << std::endl;
}
return os;
}
template <typename T, unsigned N>
bool Sudoku<T,N>::is_valid()
{
for (unsigned L = 0; L < N; ++L) {
for (unsigned C = 0; C < N; ++C) {
T & d = _Grid[L][C];
if (d == 0) {
continue;
}
// Line check
for (unsigned c = 0; c < N; ++c) {
if (c != C && _Grid[L][c] == d) {
return false;
}
}
// Column check
for (unsigned l = 0; l < N; ++l) {
if (l != L && _Grid[l][C] == d) {
return false;
}
}
// Block check
unsigned const l_low = (L / _BlockSize) * _BlockSize;
unsigned const c_low = (C / _BlockSize) * _BlockSize;
for (unsigned l = l_low; l < l_low + _BlockSize; ++l) {
for (unsigned c = c_low; c < c_low + _BlockSize; ++c) {
if (c != C && l != L && _Grid[l][c] == d) {
return false;
}
}}
}} // double for loop
return true;
}
template <typename T, unsigned N>
bool Sudoku<T,N>::is_complete()
{
for (unsigned L = 0; L < N; ++L) {
for (unsigned C = 0; C < N; ++C) {
if (_Grid[L][C] == 0) {
return false;
}
}}
return true;
}
template <typename T, unsigned N>
bool Sudoku<T,N>::next()
{
if (*_CurrentDigit < N) {
++(*_CurrentDigit);
return true;
}
return false;
}
template <typename T, unsigned N>
bool Sudoku<T,N>::first()
{
while (_CurrentDigit - (T*)_Grid < N*N) {
if (*_CurrentDigit == 0) {
break;
}
++_CurrentDigit;
}
if (_CurrentDigit - (T*)_Grid == N*N) {
return false;
}
*_CurrentDigit = 1;
return true;
}