-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWordMatrix.java
143 lines (121 loc) · 3.3 KB
/
WordMatrix.java
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
public class WordMatrix {
public int[][] solution;
public char[][] result;
int path = 1;
// Init
public WordMatrix(int N) {
solution = new int[N][N];
result = new char[N][N];
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
solution[i][j] = 0;
result[i][j] = '_';
}
}
}
public boolean searchWord(char[][] matrix, String word) {
int N = matrix.length;
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if (search(matrix, word, i, j, 0, N)) {
return true;
}
}
}
return false;
}
public boolean search(char[][] matrix, String word, int row, int col,
int index, int N) {
// cek pernah dikunjungi
if (solution[row][col] != 0 || word.charAt(index) != matrix[row][col])
return false;
// word is found
if (index == word.length() - 1) {
solution[row][col] = path++;
result[row][col] = matrix[row][col];
return true;
}
// mark the current cell as 1
solution[row][col] = path++;
result[row][col] = matrix[row][col];
// check if cell is already used
// go down
if (row + 1 < N && search(matrix, word, row + 1, col, index + 1, N))
return true;
// go up
if (row - 1 >= 0 && search(matrix, word, row - 1, col, index + 1, N))
return true;
// go right
if (col + 1 < N && search(matrix, word, row, col + 1, index + 1, N))
return true;
// go left
if (col - 1 >= 0 && search(matrix, word, row, col - 1, index + 1, N))
return true;
// go diagonally up right
if (row - 1 >= 0 && col + 1 < N
&& search(matrix, word, row - 1, col + 1, index + 1, N))
return true;
// go diagonally up left
if (row - 1 >= 0 && col - 1 >= 0
&& search(matrix, word, row - 1, col - 1, index + 1, N))
return true;
// go diagonally down left
if (row + 1 < N && col - 1 >= 0
&& search(matrix, word, row + 1, col - 1, index + 1, N))
return true;
// go diagonally down right
if (row + 1 < N && col + 1 < N
&& search(matrix, word, row + 1, col + 1, index + 1, N))
return true;
// No Solution
solution[row][col] = 0;
result[row][col] = '_';
path--;
return false;
}
public void print() {
for (int i = 0; i < solution.length; i++) {
for (int j = 0; j < solution.length; j++) {
System.out.print(" " + solution[i][j]);
}
System.out.println();
}
}
public void printBoard() {
for (int i = 0; i < result.length; i++) {
for (int j = 0; j < result.length; j++) {
System.out.print(" " + result[i][j]);
}
System.out.println();
}
}
public void printMatrix(char[][] matrix) {
for (int i = 0; i < matrix.length; i++) {
for (int j = 0; j < matrix.length; j++) {
System.out.print(" " + matrix[i][j]);
}
System.out.println();
}
}
public static void main(String[] args) {
char[][] board = {
{ 'a', 'z', 'x', 'c', 'd' },
{ 'a', 'h', 'n', 'z', 'x' },
{ 'h', 'a', 'o', 'i', 'a' },
{ 'o', 'l', 'o', 'r', 'm' },
{ 'a', 'g', 'r', 'i', 't' } };
WordMatrix w = new WordMatrix(board.length);
String s = "dasar";
if (w.searchWord(board, s)) {
System.out.printf("Search Words: %s \n", s);
System.out.printf("Matrix: \n");
w.printMatrix(board);
System.out.printf("\n Route: \n");
w.print();
System.out.printf("\n Result: \n");
w.printBoard();
} else {
System.out.println("NO PATH FOUND");
}
}
}