Mon, 27 Jul 2020 11:57:42 +0200
renames help menu
3
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
1 | /* |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
2 | * Copyright 2013 Mike Becker. All rights reserved. |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
3 | * |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
4 | * Redistribution and use in source and binary forms, with or without |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
5 | * modification, are permitted provided that the following conditions are met: |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
6 | * |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
7 | * 1. Redistributions of source code must retain the above copyright |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
8 | * notice, this list of conditions and the following disclaimer. |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
9 | * |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
10 | * 2. Redistributions in binary form must reproduce the above copyright |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
11 | * notice, this list of conditions and the following disclaimer in the |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
12 | * documentation and/or other materials provided with the distribution. |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
13 | * |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
14 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
15 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
16 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
17 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
18 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
19 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
20 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
21 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
22 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
23 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
24 | * POSSIBILITY OF SUCH DAMAGE. |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
25 | */ |
ed931970b4ac
added license and main menu
Mike Becker <universe@uap-core.de>
parents:
2
diff
changeset
|
26 | |
2 | 27 | package de.uapcore.sudoku; |
28 | ||
7 | 29 | import java.util.ArrayList; |
30 | import java.util.List; | |
31 | ||
2 | 32 | /** |
10 | 33 | * Implements the backtracking algorithm for solving the Sudoku. |
2 | 34 | */ |
35 | public final class Solver { | |
10 | 36 | |
7 | 37 | private Integer fillInCandidate(Field f, List<Integer>[][] candidates, int x, int y) { |
38 | Integer c = candidates[x][y].remove(0); | |
39 | f.setCellValue(x, y, c); | |
40 | f.setCellModified(x, y, true); | |
41 | for (int i = 0 ; i < 9 ; i++) { | |
42 | candidates[x][i].remove(c); | |
43 | candidates[i][y].remove(c); | |
44 | } | |
45 | for (int i = 0 ; i < 3 ; i++) { | |
46 | for (int j = 0 ; j < 3 ; j++) { | |
47 | candidates[x-x%3+i][y-y%3+j].remove(c); | |
48 | } | |
49 | } | |
50 | return c; | |
51 | } | |
52 | ||
53 | private void makeBackup(List<Integer>[][] candidates, List<Integer>[][] candidatesBackup) { | |
54 | for (int x = 0 ; x < 9 ; x++) { | |
55 | for (int y = 0 ; y < 9 ; y++) { | |
56 | candidatesBackup[x][y] = new ArrayList<>(9); | |
57 | candidatesBackup[x][y].addAll(candidates[x][y]); | |
58 | } | |
59 | } | |
60 | } | |
61 | ||
62 | private void makeBackup(Field f, int[][] fieldBackup) { | |
63 | for (int x = 0 ; x < 9 ; x++) { | |
64 | for (int y = 0 ; y < 9 ; y++) { | |
65 | fieldBackup[x][y] = f.getCellValue(x, y); | |
66 | } | |
67 | } | |
68 | } | |
69 | ||
70 | private void restoreBackup(Field f, int[][] fieldBackup) { | |
71 | for (int x = 0 ; x < 9 ; x++) { | |
72 | for (int y = 0 ; y < 9 ; y++) { | |
73 | f.setCellValue(x, y, fieldBackup[x][y]); | |
74 | } | |
75 | } | |
76 | } | |
77 | ||
78 | private void restoreBackup(List<Integer>[][] candidates, List<Integer>[][] candidatesBackup) { | |
79 | for (int x = 0 ; x < 9 ; x++) { | |
80 | for (int y = 0 ; y < 9 ; y++) { | |
81 | candidates[x][y].clear(); | |
82 | candidates[x][y].addAll(candidatesBackup[x][y]); | |
83 | } | |
84 | } | |
85 | } | |
86 | ||
87 | private boolean solve(Field f, List<Integer>[][] candidates) { | |
88 | ||
89 | // Make backup | |
90 | List<Integer>[][] candidatesBackup = new List[9][9]; | |
91 | int[][] fieldBackup = new int[9][9]; | |
92 | makeBackup(candidates, candidatesBackup); | |
93 | makeBackup(f, fieldBackup); | |
94 | ||
95 | // Fill in distinct solutions | |
96 | boolean fillDistinct; | |
97 | do { | |
98 | fillDistinct = false; | |
99 | for (int x = 0 ; x < 9 ; x++) { | |
100 | for (int y = 0 ; y < 9 ; y++) { | |
101 | if (f.isCellEmpty(x, y) && candidates[x][y].size() == 1) { | |
102 | fillInCandidate(f, candidates, x, y); | |
103 | fillDistinct = true; | |
104 | } | |
105 | } | |
106 | } | |
107 | } while (fillDistinct); | |
108 | ||
109 | // Try out remaining candidates | |
110 | for (int x = 0 ; x < 9 ; x++) { | |
111 | for (int y = 0 ; y < 9 ; y++) { | |
112 | if (f.isCellEmpty(x, y)) { | |
113 | while (candidates[x][y].size() > 0) { | |
114 | List<Integer>[][] cb = new List[9][9]; | |
115 | makeBackup(candidates, cb); | |
116 | Integer c = fillInCandidate(f, candidates, x, y); | |
117 | if (solve(f, candidates)) { | |
118 | break; | |
119 | } else { | |
120 | f.clearCellValue(x, y); | |
121 | restoreBackup(candidates, cb); | |
122 | // Remove current candidate anyway | |
123 | candidates[x][y].remove(c); | |
124 | } | |
125 | } | |
126 | } | |
127 | if (f.isCellEmpty(x, y)) { | |
128 | restoreBackup(f, fieldBackup); | |
129 | restoreBackup(candidates, candidatesBackup); | |
130 | return false; | |
131 | } | |
132 | } | |
133 | } | |
134 | ||
135 | return true; | |
136 | } | |
10 | 137 | |
138 | /** | |
139 | * Attempts to solve the given Sudoku field. | |
140 | * | |
141 | * The solution, if any, is directly entered into the field. | |
142 | * All solved fields will be in modified state. | |
143 | * The already given fields are left untouched. | |
144 | * | |
145 | * @param f the field to solve | |
146 | * @return true if a solution could be found, false if the field is unsolvable | |
147 | */ | |
7 | 148 | public boolean solve(Field f) { |
149 | ||
150 | // Calculate initial candidates | |
12
1c62c6009161
fixes some code inspection issues
Mike Becker <universe@uap-core.de>
parents:
10
diff
changeset
|
151 | List<Integer>[][] candidates = new List[9][9]; |
7 | 152 | for (int x = 0 ; x < 9 ; x++) { |
153 | for (int y = 0 ; y < 9 ; y++) { | |
154 | candidates[x][y] = new ArrayList<>(9); | |
155 | if (f.getCellValue(x, y) == 0) { | |
156 | // All numbers are candidates | |
157 | for (int c = 1 ; c <= 9 ; c++) { | |
158 | candidates[x][y].add(c); | |
159 | } | |
160 | // Remove row duplicates | |
161 | int[] line = f.getRow(y); | |
162 | for (Integer c : line) { | |
163 | candidates[x][y].remove(c); | |
164 | } | |
165 | // Remove column duplicates | |
166 | line = f.getColumn(x); | |
167 | for (Integer c : line) { | |
168 | candidates[x][y].remove(c); | |
169 | } | |
170 | // Remove square duplicates | |
171 | int[][] square = f.getSquare(x/3, y/3); | |
172 | for (int[] sq : square) { | |
173 | for (Integer c : sq) { | |
174 | candidates[x][y].remove(c); | |
175 | } | |
176 | } | |
177 | } | |
178 | } | |
179 | } | |
180 | ||
181 | // Backtrack | |
8
e70a0e3555fb
removed completeness test - the solver automatically returns false when the field is incomplete
Mike Becker <universe@uap-core.de>
parents:
7
diff
changeset
|
182 | return solve(f, candidates); |
7 | 183 | } |
10 | 184 | |
185 | /** | |
186 | * Performs a fast check whether any field violates the Sudoku rules. | |
187 | * | |
188 | * @param f the field to check | |
189 | * @return true, if the check succeeds, false otherwise | |
190 | */ | |
2 | 191 | public boolean check(Field f) { |
12
1c62c6009161
fixes some code inspection issues
Mike Becker <universe@uap-core.de>
parents:
10
diff
changeset
|
192 | int[] line; |
2 | 193 | for (int i = 0 ; i < 9 ; i++) { |
5
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
3
diff
changeset
|
194 | line = f.getRow(i); |
2 | 195 | if (!valid(line)) { |
196 | return false; | |
197 | } | |
5
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
3
diff
changeset
|
198 | line = f.getColumn(i); |
2 | 199 | if (!valid(line)) { |
200 | return false; | |
201 | } | |
202 | } | |
203 | ||
12
1c62c6009161
fixes some code inspection issues
Mike Becker <universe@uap-core.de>
parents:
10
diff
changeset
|
204 | int[][] square; |
2 | 205 | for (int x = 0 ; x < 3 ; x++) { |
206 | for (int y = 0 ; y < 3 ; y++) { | |
5
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
3
diff
changeset
|
207 | square = f.getSquare(x, y); |
2 | 208 | if (!valid(square)) { |
209 | return false; | |
210 | } | |
211 | } | |
212 | } | |
213 | ||
214 | return true; | |
215 | } | |
216 | ||
217 | private boolean valid(int[] line) { | |
12
1c62c6009161
fixes some code inspection issues
Mike Becker <universe@uap-core.de>
parents:
10
diff
changeset
|
218 | int[] numbers; |
5
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
3
diff
changeset
|
219 | numbers = new int[9]; |
2 | 220 | for (int i = 0 ; i < 9 ; i++) { |
221 | int l = line[i]-1; | |
222 | if (l >= 0) { | |
5
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
3
diff
changeset
|
223 | if ((++numbers[l]) > 1) { |
2 | 224 | return false; |
225 | } | |
226 | } | |
227 | } | |
228 | ||
229 | return true; | |
230 | } | |
231 | ||
232 | private boolean valid(int[][] square) { | |
233 | int[] line = new int[9]; | |
234 | for (int x = 0 ; x < 3 ; x++) { | |
5
8ddf4af937d7
moved field methods to field class + added (parts of the) document handler
Mike Becker <universe@uap-core.de>
parents:
3
diff
changeset
|
235 | System.arraycopy(square[x], 0, line, 3*x, 3); |
2 | 236 | } |
237 | return valid(line); | |
238 | } | |
239 | } |