-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
389 lines (274 loc) · 9.43 KB
/
main.cpp
File metadata and controls
389 lines (274 loc) · 9.43 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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
#include<iostream>
#include<stdlib.h>
#include<iomanip>
#include <string>
#include <fstream>
#include <sstream>
#include <algorithm>
#include <cctype>
#include <queue>
#include <vector>
using namespace std;
#include "DATA.h"
#include "AvlChild.h"
//Global function for traversing an AVL tree
void print(DATA ss) {
cout << "Word: " << ss.key << " |";
cout << " Frequency: " << ss.frequency << endl;
cout << endl;
}
//trim words
string trimWord(string input){
stringstream ss;
for (int x=0; x< (int) input.size(); x++){
if(isalpha(input[x])){
ss << input[x];
}
}
if(ss.str().length()> 0) {
string data = ss.str();
std::transform(data.begin(), data.end(), data.begin(), ::tolower);
return data;
} else {
return "";
}
}
//add words
void readWords(string textfile, AvlChild& tree){
ifstream fin;
string word;
DATA newItem;
do {
fin.open(textfile);
if (fin.fail()) {
cout << "Input file opening failed.\n";
}
} while (fin.fail());
// read from file
int i = 0;
DATA data;
while (!fin.eof()) {
fin >> word;
word = trimWord(word);
if (word != "") {
if (!tree.AVL_Retrieve(word, data)) { //if node does not exist
newItem.key = word;
newItem.frequency = 1;
tree.AVL_Insert(newItem);
} else {
tree.AVL_Update(data);
}
}
i++;
}
cout << "This document contains: " << data.count << " words " << endl;
}
//add phrases
void readPhrases(string textfile, AvlChild& tree){
ifstream fin;
DATA newItem;
do {
fin.open(textfile);
if (fin.fail()) {
cout << "Input file opening failed.\n";
}
} while (fin.fail());
string word, nextWord;
vector<string> phrase(3);
do {
fin >> nextWord;
phrase[0] = trimWord(nextWord);
word = phrase[0];
} while (phrase[0] == "");
for (int i = 1; i < 3; i++) {
do {
fin >> nextWord;
phrase[i] = trimWord(nextWord);
} while (phrase[i] == "");
word = word + " " + phrase[i];
}
while (!fin.eof()) {
// read from file
int z = 0;
DATA data;
if (!tree.AVL_Retrieve(word, data)) { //if node does not exist
newItem.key = word;
newItem.frequency = 1;
tree.AVL_Insert(newItem);
} else {
tree.AVL_Update(data);
}
phrase.erase(phrase.begin());
word = phrase[0] + " " + phrase[1];
do {
fin >> nextWord;
nextWord = trimWord(nextWord);
} while (nextWord == "");
phrase.push_back(nextWord);
word = word + " " + phrase[2];
z++;
}
}
int main() {
AvlChild tree;
int option;
cout << "Please select from the following options: " << endl;
cout << "1. Learn dictionary from a file (without phrases)." << endl;
cout << "2. Learn dictionary from a file (with words and phrases)." << endl;
cout << "3. Load dictionary from a file." << endl;
cout << "4. Output dictionary to a file." << endl;
cout << "5. Print the whole dictionary with the information of each word and its frequency." << endl;
cout << "6. Print the AVL tree with the information of the total number of words" << endl;
cout << "7. Print the words in order of frequency" << endl;
cout << "8. Find similar words according to your input" << endl;
cout << "9. Delete words/phrases with lower frequency" << endl;
cout << "10. Inverted index: Display the list of names of all the files that contain the word." << endl;
cout << "0. Quit" << endl;
do {
cout << "\n Main Menu: Enter your input. Write 99 to exit " << endl;
cin >> option;
if (option == 1) {
//Learn dictionary from a file (without phrases).
string textfile;
cout << "Enter in file name, e.g. article1.txt" << endl;
cin >> textfile;
readWords(textfile, tree);
cout << "Dictionary now has " << tree.AVL_Count() << " words." << endl;
} else if (option == 2) {
// Learn dictionary from a file (with phrases).
string textfile;
cout << "Enter in file name, e.g. article1.txt" << endl;
cin >> textfile;
readWords(textfile, tree);
readPhrases(textfile, tree);
cout << "Words successfully added! Dictionary now has " << tree.AVL_Count() << " words." << endl;
}
else if (option == 3)
{
//Load dictionary from a file.
ifstream fin;
string word;
DATA newItem;
char deliminator;
char space;
int freq;
int total;
string textfile;
do {
cout << "Enter in file name to load dictionary, e.g. dictionary.txt" << endl;
cin >> textfile;
fin.open(textfile);
if (fin.fail()) {
cout << "Input file opening failed.\n";
}
} while(fin.fail());
// read from file
int i = 0;
while(!fin.eof()){
fin >> word;
fin.get(space);
fin.get(deliminator);
fin.get(space);
fin >> freq;
fin.get(deliminator);
fin >> total;
DATA data;
newItem.key = word;
newItem.frequency = freq;
tree.AVL_Insert(newItem);
i++;
}
cout << "I'm done!" << endl;
}
else if (option == 4)
{
tree.OutputDictionary();
cout << tree.AVL_Count() << " words successfully added" << endl;
}
else if (option == 5)
{
// Print the whole dictionary with the information of each word and its frequency.
if(tree.AVL_Empty())
cout << "Empty tree."<< endl;
else
tree.PrintDictionary();
}
else if (option == 6) {
//Print the AVL tree with the information of the total number of words
cout << "AVL Tree" << endl;
tree.AVL_Print();
cout << "\nTotal words in dictionary: " << tree.AVL_Count() << endl << endl;
}
else if (option == 7) {
// Generate a priority queue for each input of characters in the order of frequency from your frequency dictionary
cout<<"Words by Frequency:" << endl;
tree.printWordsByFreq();
cout<<endl;
}
else if (option == 8) {
// Display a list of words from the priority queue according to your input.
cout << "Similar Word Search:" << endl;
tree.printSimilarWords();
cout << endl;
}
else if (option == 9)
{
// Extend your frequency dictionary so that it can delete words/phrases with lower frequency
tree.LowFrequency();
}
else if (option == 10) {
// Extend your frequency dictionary to contain an inverted index so that whenever a word is input,
// your program will display the list of names of all the files that contain the word.
int files;
string textfile;
cout << "How many files would you like to add?" << endl;
cin >> files;
for (int k = 0; k < files; k++) {
ifstream fin;
string word;
DATA newItem;
do {
cout << "Enter in file name, e.g. article1.txt" << endl;
cin >> textfile;
fin.open(textfile);
if (fin.fail()) {
cout << "Input file opening failed.\n";
}
} while(fin.fail());
// read from file
int i = 0;
while(!fin.eof()){
fin >> word;
word = trimWord(word);
DATA data;
if (word != ""){
if (!tree.AVL_Retrieve(word, data)){ //if node does not exist
newItem.key = word;
newItem.frequency = 1;
newItem.fileName.insert(textfile);
tree.AVL_Insert(newItem);
} else {
newItem.fileName.insert(textfile);
// FEEDBACK : There is
// data.newFile = textfile;
tree.AVL_Update(data);
}
}
i++;
}
cout << "Learning from file: Textfile/" + textfile << endl;
cout << "Words successfully added! Dictionary now has " << tree.AVL_Count() << " words." << endl << endl;
}
tree.AVL_searchInvertedIndex();
}
else if (option == 11){
//testing purposes
}
else if (option == 99) {
}
else {
cout << "Invalid option, please try again" << endl;
}
} while (option != 99 || !(option<=10));
return 0;
}