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
|
public class Solution { private static class Point { public int x, y;
public Point(int x, int y) { this.x = x; this.y = y; }
@Override public String toString() { return "<" + x + ", " + y + ">"; } }
static char[][] data = { {'5', '3', '.', '.', '7', '.', '.', '.', '.'}, {'6', '.', '.', '1', '9', '5', '.', '.', '.'}, {'.', '9', '8', '.', '.', '.', '.', '6', '.'}, {'8', '.', '.', '.', '6', '.', '.', '.', '3'}, {'4', '.', '.', '8', '.', '3', '.', '.', '1'}, {'7', '.', '.', '.', '2', '.', '.', '.', '6'}, {'.', '6', '.', '.', '.', '.', '2', '8', '.'}, {'.', '.', '.', '4', '1', '9', '.', '.', '5'}, {'.', '.', '.', '.', '8', '.', '.', '7', '9'} };
public static void main(String[] args) { new Solution().solveSudoku(data); printBoard(data, "最终结果"); }
private static void printBoard(char[][] data, String msg) { System.out.println("\n" + msg + ":"); for (int i = 0; i < data.length; i ++) { for (int j = 0; j < data[i].length; j++) { System.out.print(data[i][j] + " "); } System.out.println(); } System.out.println(); }
boolean over = false;
public void solveSudoku(char[][] board) { backtrack(board, nextPoint(board, new Point(0, 0))); }
private void backtrack(char[][] board, Point focus) { if (over || isOver(board)) { over = true; return; }
if (focus == null) { over = true; return; }
for (int val = 1; val <= 9 && !over; val++) { board[focus.x][focus.y] = (char) ('0' + val); if (isValid(board, focus, (char) ('0' + val))) { backtrack(board, nextPoint(board, focus)); } } if (!over) board[focus.x][focus.y] = '.'; }
private boolean isValid(char[][] board, Point p, char val) { for (int i = 0; i <= 8; i++) { if (i != p.y && board[p.x][i] == val) return false; } for (int i = 0; i <= 8; i++) { if (i != p.x && board[i][p.y] == val) return false; } for (int i = (p.x / 3 * 3); i <= (p.x / 3 * 3) + 2; i++) { for (int j = (p.y / 3 * 3); j <= (p.y / 3 * 3) + 2; j++) { if (i != p.x && j != p.y && board[i][j] == val) return false; } }
return true; }
private boolean isOver(char[][] board) { for (int i = 0; i < board.length; i++) { for (int j = 0; j < board[i].length; j++) { if (board[i][j] == '.') return false; } } return true; }
private Point nextPoint(char[][] board, Point p) { Point returnPoint = null; int x = p.x, y = p.y; while (x <= 8 && returnPoint == null) { for (int i = y; i <= 8; i++) { if (board[x][i] == '.') { returnPoint = new Point(x, i); break; } } y = 0; x ++; }
return returnPoint; } }
|