-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMini_Search_Engine.cpp
256 lines (210 loc) · 7.35 KB
/
Mini_Search_Engine.cpp
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
//
// main.cpp
// Mini Search Engine of Problems
//
// Created by Mayur Jain on 2/4/17.
// Copyright © 2017 Mayur Jain. All rights reserved.
//
#include <iostream>
#include <string>
#include <fstream>
#include <tuple>
#include <vector>
#include <sstream>
#include <map>
#include <regex>
#include <stdexcept>
#include <algorithm>
#include <CoreFoundation/CFBundle.h>
#include <ApplicationServices/ApplicationServices.h>
using namespace std;
map<int,string> getFileToMap;
map<int,string> getUrlForSolution;
class Problems{
public:
string differentProblems();
std::pair<int,string> SearchProblemExist(int,string,int); // pair <tuple>
}getProblem;
class Solutions: public Problems{ // Inheritance
public:
// Public Access Specifier - members declared under can be accessible from outside the s class
vector<int> filter_search[10];
long Life_solution(string,int);
void subSearch(int,int,string);
void printQuestions(int fetchQuestion){
cout<<"Question less Proabable"<<fetchQuestion<<endl;
}
}solution; // Object for class "Solutions"
void openURL(const string &url_str) {
CFURLRef url = CFURLCreateWithBytes
(
NULL, // allocator
(UInt8*)url_str.c_str(), // URLBytes
url_str.length(), // length
kCFStringEncodingASCII, // encoding
NULL // baseURL
);
LSOpenCFURLRef(url,0);
CFRelease(url);
}
long Solutions::Life_solution(string wordSearch,int pushKey){
int y=0;
long sub_search_count = 0;
string line;
std::smatch m;
// moving the file into map container
ifstream getFile ("/Users/mayurjain/Generic_Problem.txt");
if (getFile.is_open())
{
while ( getline (getFile,line) )
{
getFileToMap.insert(std::pair<int,string>(++y,line)); // Assigning Number to a Line or Question !
}
// Moved the file to MAP CONTAINER
for(map<int,string>::iterator itr = getFileToMap.begin();itr!=getFileToMap.end();++itr){
try{
std::regex e ("\\b" + wordSearch +"\\b",regex_constants::icase);
if(std::regex_search (itr->second,m,e))
{
filter_search[pushKey].push_back(itr->first); // Array Vector (filter_search) holds the occurrence of each word with its key value
}
}catch(const std::regex_error& oor) {
std::cerr << "Regex error: " << oor.code() << '\n';
break;
}
}
if(filter_search[pushKey].empty()){
cout<<"NO matches found "<<endl;
}
else{
try {
sub_search_count = filter_search[pushKey].size();
cout<<wordSearch<<" "<<"count is "<<sub_search_count<<endl;
}
catch (const std::out_of_range& oor) {
std::cerr << "Out of Range error: " << oor.what() << '\n';
}
getFile.close();
}
}
return sub_search_count;
}
void Solutions::subSearch(int subSearchArray,int noOfWords,string searchedString){
cout<<subSearchArray<<endl;
std::ofstream out;
int freq[100];
string line;
int x=0;
if(subSearchArray<=noOfWords && noOfWords > 0){
try{
for(int i=0;i<10;i++){
if(!filter_search[i].empty()){
for(int j=1;j<10;j++){
filter_search[0].insert(filter_search[0].end(),filter_search[j].begin(), filter_search[j].end());
filter_search[j].erase(filter_search[j].begin(), filter_search[j].end());
freq[j-1] = -1;
}
}
else{
continue;
}
}
sort(filter_search[0].begin(),filter_search[0].end());
for(int q=0; q<filter_search[0].size(); q++)
{
int count = 1;
for(int p=q+1; p < filter_search[0].size() ; p++)
{
if(filter_search[0].at(q)==filter_search[0].at(p))
{
count++;
freq[p] = 0;
}
}
if(freq[q]!=0)
{
freq[q] = count;
}
}
for(int w=0; w<filter_search[0].size(); w++)
{
if(freq[w]!=0)
{
cout<<filter_search[0].at(w)<<" "<<freq[w]<<endl;
}
}
int max_freq = filter_search[0].size();
int max_elements = std::distance(freq,std::max_element(freq, freq+max_freq));
//int min_elements = *std::min_element(freq, freq+max_freq);
//out.open("/Users/mayurjain/Generic_Problem.txt");
cout<<getFileToMap.at(filter_search[0].at(max_elements))<<endl;
ifstream soln("/Users/mayurjain/Generic_Solution.txt");
if (soln.is_open())
{
while ( getline (soln,line) )
{
getUrlForSolution.insert(std::pair<int,string>(++x,line)); // Assigning Number to a Line or Question !
}
}
soln.close();
string str(getUrlForSolution.at(filter_search[0].at(max_elements)));
openURL(str);
}
catch(const std::out_of_range& oor) {
std::cerr << "Out of Range error: " << oor.what() << '\n';
}
}
else
{
cout<<"Unable to find the solution"<<endl;
cout<<"But We will add your question to our priorty list of questions"<<endl;
out.open("/Users/mayurjain/Generic_Problem.txt",std::ios::app);
std::string str = searchedString;
out<<endl;
out<<getFileToMap.size()+2<<"."<<str;
out.close();
}
}
string Problems::differentProblems(){
string anythingSpecificProblem;
cout<<"Please Enter your Search "<<endl;
std::getline(std::cin,anythingSpecificProblem);
return anythingSpecificProblem;
}
int main(){
map<int,string> problemStatement;
string questionSearched = getProblem.differentProblems();
string arr[20];
int i = 0;
int q = 0;
int wordPresent = 0;
// Forming array format of string
stringstream ssin(questionSearched);
while (ssin.good() && i < 20){
ssin >> arr[i];
++i;
}
// check entered string is empty or not and then inserting & mapping the string with key and value in problemStatement Map
int noOfwords = i;
for(int x=0;x<20;x++){
if(arr[x]==""){
break;
}
else
{
problemStatement.insert(std::pair<int,string>(x+1,arr[x]));
}
}
for(map<int,string>::iterator it = problemStatement.begin();it!=problemStatement.end();++it)
{
q +=1;
long wordFound = solution.Life_solution(problemStatement.at(q),q-1);
if(wordFound>0){
++wordPresent;
}
else{
cout<<problemStatement.at(q)<<" word is not found"<<endl;
}
}
solution.subSearch(wordPresent,noOfwords,questionSearched);
}