-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDic.cpp
More file actions
238 lines (200 loc) · 4.77 KB
/
Copy pathDic.cpp
File metadata and controls
238 lines (200 loc) · 4.77 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
#include<iostream>
#include<fstream>
#include<vector>
#include<string>
#include<set>
#include<algorithm>
#include<string.h>
#include<iomanip>
#include<stdio.h>
#include<conio.h>
using namespace std;
class Node
{
public:
Node()
{
mContent = ' '; //Initializing the child of tree as blank space.
mMarker = false; //If Node is an endpoint of the word.
}
~Node() {}
char content()
{
return mContent;
}
void setContent(char c)
{
mContent = c;
}
bool wordMarker()
{
return mMarker;
}
void setWordMarker()
{
mMarker = true;
}
Node* findChild(char c)
{
for ( int i = 0; i < mChildren.size(); i++ )//Returns the length of the string, in terms of bytes.
{
Node* tmp = mChildren.at(i);//Returns a reference to the character at position pos in the string.
if ( tmp->content() == c )
{
return tmp;
}
}
return NULL;
}
void appendChild(Node* child)
{
mChildren.push_back(child); //Adds a new element at the end of the vector, after its current last element.
}
vector<Node*> children()
{
return mChildren;
}
private:
char mContent;
bool mMarker;
vector<Node*> mChildren;
};
class Trie
{
public:
Trie();
~Trie();
void addWord(string s);
bool searchWord(string s);
bool autoComplete(string s,vector<string>&);
void parseTree(Node *current,char * s,vector<string>&,bool &loop);
private:
Node* root;
};
Trie::Trie()
{
root = new Node();
}
Trie::~Trie()
{
// Free memory
}
void Trie::addWord(string s)
{
Node* current = root;
if ( s.length() == 0 )
{
current->setWordMarker(); // an empty word
return;
}
for ( int i = 0; i < s.length(); i++ )
{
Node* child = current->findChild(s[i]);
if ( child != NULL )
{
current = child;
}
else
{
Node* tmp = new Node();
tmp->setContent(s[i]);
current->appendChild(tmp);//adds at the end of the ver
current = tmp;
}
if ( i == s.length() - 1 )
current->setWordMarker();
}
}
bool Trie::autoComplete(std::string s, std::vector<string> &res)
{
Node *current=root;
for ( int i = 0; i < s.length(); i++ )
{
Node* tmp = current->findChild(s[i]);
if ( tmp == NULL )
return false;
current = tmp;
}
char c[100];
strcpy(c,s.c_str());
bool loop=true;
parseTree(current,c,res,loop);
return true;
}
void Trie::parseTree(Node *current, char *s,std::vector<string> &res,bool& loop)
{
char k[100]= {0};
char a[2]= {0};
if(loop)
{
if(current!=NULL)
{
if(current->wordMarker()==true)
{
res.push_back(s);
if(res.size()>15)
loop=false;
}
vector<Node *> child=current->children();
for(int i=0; i<child.size() && loop; i++)
{
strcpy(k,s);
a[0]=child[i]->content();
a[1]='\0';
strcat(k,a);
if(loop)
parseTree(child[i],k,res,loop);
}
}
}
}
// Taken From Stacksoverflow.com
bool loadDictionary(Trie* trie,string filename)
{
ifstream words;
ifstream input;
words.open(filename.c_str());
if(!words.is_open())
{
cout<<"Dictionary file Not Open"<<endl;
return false;
}
while(!words.eof())
{
char s[100];
words >> s;
trie->addWord(s);
}
return true;
}
int main()
{
system("color 1E");
Trie* trie = new Trie();
char mod;
int mode;
loadDictionary(trie,"wordlist.txt");
string s;
ifstream f;
f.open("C:\\TURBOC3\\BIN\\TEMP.txt");
f>>s;
f.close();
transform(s.begin(), s.end(), s.begin(), ::tolower);
vector<string> autoCompleteList;
trie->autoComplete(s,autoCompleteList);
ofstream g;
if(autoCompleteList.size()==0)
{
//cout<<"Word not in dictionary"<<endl;
g.open("C:\\TURBOC3\\BIN\\TEMP.txt",ios::out);
g<<0;
}
else
{
g.open("C:\\TURBOC3\\BIN\\TEMP.txt",ios::out);
g<<1;
//system("clear");
}
f.close();
delete trie;
}