This repository was archived by the owner on Aug 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
218 lines (185 loc) · 5.68 KB
/
Copy pathmain.cpp
File metadata and controls
218 lines (185 loc) · 5.68 KB
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// Jonathan Ho
// Word Search Solver
#include <iostream>
#include <fstream>
#include <ostream>
#include <cstdlib>
#include <algorithm>
#include <string>
#include <unordered_set>
#include <set>
#include <vector>
using namespace std;
const int minLength = 6; // minimum length of words being looked for
const int maxLength = 50; // maximum length of words being looked for
int N = 0; // number of rows
int M = 0; // number of columns
unordered_set<string> wordlist; // C++ STL unordered_set to store the wordlist
vector<vector<char>> puzzle; // C++ STL vector of vectors containing characters to store the puzzle
set<string> words; // C++ STL set to store the answers of the word search
void readWordlist(string filename); // fucntion to read the wordlist when given the filename
void readPuzzle(string filename); // function to read the puzzle when given the filename
void findWords(); // function to solve the word search
void printWords(string filename); // function to print the answers
void printWordlist(); // debugging function to print the wordlist
void printPuzzle(); // debugging function to print the puzzle
// main
int main() {
readWordlist("words.txt");
// debugging
// printWordlist();
readPuzzle("puzzle.txt");
// debugging
// printPuzzle();
findWords();
printWords("answers.txt");
return 0;
}
// helper function to validate strings that are read from the wordlist
bool validatestring(string str) {
int count = 0;
for (int i = 0; i < str.size(); i++) {
if(str[i] < 'a' || str[i] > 'z') {
return false;
} else {
count++;
}
}
return count >= minLength && count <= maxLength;
}
// fucntion to read the wordlist when given the filename
void readWordlist(string filename) {
ifstream wlReader(filename);
string word;
if (wlReader.is_open()) {
while (getline(wlReader, word)) {
if (validatestring(word)) {
wordlist.insert(word);
}
}
wlReader.close();
}
}
// fucntion to read the puzzle when given the filename
void readPuzzle(string filename) {
ifstream pzlReader(filename);
string line;
if (pzlReader.is_open()) {
while (getline(pzlReader, line)) {
if (N == 0) {
M = (line.size()+1)/2;
}
N++;
vector<char> row;
for (int i = 0; i < line.size(); i+=2) {
row.push_back(line[i]);
}
puzzle.push_back(row);
}
pzlReader.close();
}
}
// helper function to calculate the minimum of 2 integers
int min(int a, int b) {
if (a < b) {
return a;
}
return b;
}
// helper function to check if a string is in the wordlist and add it to the answer
void checkWord(string s, string t) {
if (wordlist.count(s)) {
words.insert(s+t);
}
}
// helper function to check horizontally to the right from the current position (tests the reverse as well)
void search0(int r, int c) {
string test1 = "";
string test2 = "";
for (int i = 0; i < min(M-c, maxLength); i++) {
test1 = test1 + puzzle[r][c+i];
test2 = puzzle[r][c+i] + test2;
if ((i+1) >= minLength) {
checkWord(test1, " from ("+to_string(r)+", "+to_string(c)+") to ("+to_string(r)+", "+to_string(c+i)+")");
checkWord(test2, " from ("+to_string(r)+", "+to_string(c+i)+") to ("+to_string(r)+", "+to_string(c)+")");
}
}
}
// helper function to check diagonally down-right from the current position (tests the reverse as well)
void search45(int r, int c) {
string test1 = "";
string test2 = "";
for (int i = 0; i < min(maxLength, min(N-r, M-c)); i++) {
test1 = test1 + puzzle[r+i][c+i];
test2 = puzzle[r+i][c+i] + test2;
if ((i+1) >= minLength) {
checkWord(test1, " from ("+to_string(r)+", "+to_string(c)+") to ("+to_string(r+i)+", "+to_string(c+i)+")");
checkWord(test2, " from ("+to_string(r+i)+", "+to_string(c+i)+") to ("+to_string(r)+", "+to_string(c)+")");
}
}
}
// helper function to check vertically down from the current position (tests the reverse as well)
void search90(int r, int c) {
string test1 = "";
string test2 = "";
for (int i = 0; i < min(N-r, maxLength); i++) {
test1 = test1 + puzzle[r+i][c];
test2 = puzzle[r+i][c] + test2;
if ((i+1) >= minLength) {
checkWord(test1, " from ("+to_string(r)+", "+to_string(c)+") to ("+to_string(r+i)+", "+to_string(c)+")");
checkWord(test2, " from ("+to_string(r+i)+", "+to_string(c)+") to ("+to_string(r)+", "+to_string(c)+")");
}
}
}
// helper function to check diagonally down-left from the current position (tests the reverse as well)
void search135(int r, int c) {
string test1 = "";
string test2 = "";
for (int i = 0; i < min(maxLength, min(N-r, c+1)); i++) {
test1 = test1 + puzzle[r+i][c-i];
test2 = puzzle[r+i][c-i] + test2;
if ((i+1) >= minLength) {
checkWord(test1, " from ("+to_string(r)+", "+to_string(c)+") to ("+to_string(r+i)+", "+to_string(c-i)+")");
checkWord(test2, " from ("+to_string(r+i)+", "+to_string(c-i)+") to ("+to_string(r)+", "+to_string(c)+")");
}
}
}
// function to solve the word search by going through each index and traversing in the 4 directions (+ their opposites)
void findWords() {
for (int r = 0; r < N; r++) {
for (int c = 0; c < M; c++) {
search0(r, c);
search45(r, c);
search90(r, c);
search135(r, c);
}
}
}
// function to print the answers
void printWords(string filename) {
ofstream wordprinter (filename);
if (wordprinter.is_open()) {
for (auto const& i: words) {
wordprinter << i << endl;
}
wordprinter.close();
}
}
// debugging function to print the wordlist
void printWordlist() {
for (auto const& i: wordlist) {
cout << i << " ";
}
cout << endl;
}
// debugging function to print the puzzle
void printPuzzle() {
cout << "N: " << N << "; M: " << M << endl;
for (int i = 0; i < N; i++) {
vector<char> row = puzzle[i];
for (int j = 0; j < M; j++) {
cout << row[j] << " ";
}
cout << endl;
}
}