-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreprocessor.cc
73 lines (45 loc) · 1.57 KB
/
preprocessor.cc
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
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
ifstream inFile;
ofstream outFile;
inFile.open("/usr/share/dict/words");
if(inFile.fail()){
cout<<"Failed to open input file" << endl;
}
outFile.open("words.txt");
if(outFile.fail()){
cout<<"Failed to open output file"<<endl;
}
while(inFile.good()){ // while there are lines
string inWord;
int nbrOfChar;
getline(inFile, inWord); //maybe use '>>' operator here instead?
nbrOfChar = inWord.length();
outFile << inWord << ' ' ; // write the word to the outfile, the number of trigrams will be added later
transform(inWord.begin(), inWord.end() , inWord.begin(), ::tolower); // make everything lower case
if(nbrOfChar >= 3){
outFile << (nbrOfChar-2); //if the word is long enough to contain trigrams, the nbr of trigrams are n-2
vector<string> trigrams;
for(int i = 0 ; i < nbrOfChar-2 ; ++i){ // substract all trigrams and att them to a vector
string trigram;
trigram = inWord.substr(i, 3);
trigrams.push_back( trigram );
}
sort(trigrams.begin(), trigrams.end()); // sort the trigrams
for( std::vector<string>:: iterator k = trigrams.begin(); k != trigrams.end(); ++k ){
outFile << ' ' << *k ;//writing the trigrams to output file
}
}else {
//outFile << 1 << ' ' << inWord; //if the word length was shorter than three, there are 0 trigrams in the word
outFile << 0 ;
}
outFile << endl;
}
inFile.close();
outFile.close();
}