forked from anitaa1990/Android-Cheat-sheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Boggle.java
152 lines (123 loc) · 4.26 KB
/
Boggle.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
144
145
146
147
148
149
150
151
152
package backtracks;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
public class Boggle {
/*
* Given an NxN grid of characters and a dictionary, find all words which can be made from the characters
* in grid and present in the given dictionary. A word can start and end at any character in the grid.
* Next character must be adjacent to previous character in any of the directions i.e. up, down, left,
* right and diagonal. Character at each position in grid can be used only once while making a word.
* Sample:
* char[][] grid = new char[][] {
* {'c', 'a', 't'},
* {'r', 'r', 'e'},
* {'t', 'o', 'n'}
* };
*
*
* Runtime Complexity:
* Exponential, O(Nn).
* where 'N' is the dimension of the grid.
*
* Memory Complexity:
* Quadratic, O(N2).
* where 'N' is the dimension of the grid. Recursive solution will consume memory on the stack as well.
*
* As every character from the grid can appear only once in a word, so we need to maintain a boolean matrix to indicate if the
* corresponding character in grid is used to make this word.
*
* */
char[][] grid;
boolean[][] state;
Set<String> dictionary;
private List<Pair> findAllNumbers(int x, int y) {
List<Pair> numbers = new ArrayList<>();
int start_x = Math.max(0, x - 1);
int start_y = Math.max(0, y - 1);
int end_x = Math.min(grid.length - 1, x + 1);
int end_y = Math.min(grid.length - 1, y + 1);
for (int i = start_x; i <= end_x; ++i) {
for (int j = start_y; j <= end_y; ++j) {
if (state[i][j]) {
continue;
}
numbers.add(new Pair(i, j));
}
}
return numbers;
}
void findWordsRec(int i, int j,
StringBuilder current,
HashSet<String> words) {
if (current.length() > 0 && dictionary.contains(current.toString())) {
words.add(current.toString());
}
List<Pair> nbrs = findAllNumbers(i, j);
for (Pair pr : nbrs) {
current.append(grid[(int) pr.first][(int) pr.second]);
state[(int) pr.first][(int) pr.second] = true;
findWordsRec((int) pr.first, (int) pr.second, current, words);
current.setLength(current.length() - 1);
state[(int) pr.first][(int) pr.second] = false;
}
}
private Boggle(char[][] g,
HashSet<String> d) {
grid = g;
dictionary = d;
state = new boolean[g.length][g.length];
for (int i = 0; i < g.length; ++i) {
for (int j = 0; j < g.length; ++j) {
state[i][j] = false;
}
}
}
public HashSet<String> findAllWords() {
HashSet<String> words = new HashSet<>();
StringBuilder current_word = new StringBuilder();
for (int i = 0; i < grid.length; ++i) {
for (int j = 0; j < grid.length; ++j) {
findWordsRec(i, j, current_word, words);
}
}
return words;
}
protected static class Pair<K, V> {
private K first;
private V second;
public Pair(K first, V second) {
this.first = first;
this.second = second;
}
public K getFirst() {
return first;
}
public V getSecond() {
return second;
}
}
public static void main(String[] args) {
char[][] grid = new char[][]{
{'c', 'a', 't'},
{'r', 'r', 'e'},
{'t', 'o', 'n'}
};
HashSet<String> dictionary = new HashSet<String>();
dictionary.add("art");
dictionary.add("cat");
dictionary.add("cater");
dictionary.add("cartoon");
dictionary.add("toon");
dictionary.add("moon");
dictionary.add("not");
dictionary.add("apple");
dictionary.add("ton");
Boggle b = new Boggle(grid, dictionary);
HashSet<String> words = b.findAllWords();
for (String s : words) {
System.out.println(s);
}
}
}