-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.cpp
59 lines (55 loc) · 1.7 KB
/
main.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
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include "../head/ST.h"
#include "../head/SET.h"
// TODO: add a fstream to filename map
using namespace std;
/**
* The {@code FileIndex} class provides a client for indexing a set of files,
* specified as command-line arguments. It takes queries from standard input
* and prints each file that contains the given query.
* <p>
* For additional documentation, see <a href="https://algs4.cs.princeton.edu/35applications">Section 3.5</a> of
* <i>Algorithms, 4th Edition</i> by Robert Sedgewick and Kevin Wayne.
*
* @author Robert Sedgewick
* @author Kevin Wayne
*/
auto split = [](string s, char delim) {
vector<string> tokens;
stringstream ss(s);
string tmp;
while (getline(ss, tmp, delim)) {
if (tmp != "")
tokens.push_back(tmp);
}
return tokens;
};
int main() {
vector<string> files{"/home/ace/AceDev/C++/algorithm/ch3/data/ex1.txt",
"/home/ace/AceDev/C++/algorithm/ch3/data/ex2.txt",
"/home/ace/AceDev/C++/algorithm/ch3/data/ex3.txt",
"/home/ace/AceDev/C++/algorithm/ch3/data/ex4.txt"};
string tmp;
ST<string, SET<string>> st;
for (auto file: files) {
fstream f(file);
while (f >> tmp) {
if (!st.contains(tmp)) st.put(tmp, SET<string>());
st.get(tmp).add(file);
}
}
cout << "please input query (-1 means break): " << endl;
string query;
while (cin >> query) {
if (query == "-1")
break;
if (st.contains(query)) {
for (auto f: st.get(query)) {
cout << f << endl;
}
}
}
}