-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.cpp
58 lines (53 loc) · 1.58 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
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include "../head/ST.h"
using namespace std;
/**
* The {@code LookupCSV} class provides a data-driven client for reading in a
* key-value pairs from a file; then, printing the values corresponding to the
* keys found on standard input. Both keys and values are strings.
* The fields to serve as the key and value are taken as command-line arguments.
* <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() {
int keyField = 0;
int valField = 3;
// symbol table
ST<string, string> st;
// read in the data from csv file
fstream file("/home/ace/AceDev/C++/algorithm/ch3/data/amino.csv");
string tmp;
while (getline(file, tmp)) {
vector<string> tokens = split(tmp, ',');
string key = tokens[keyField];
string val = tokens[valField];
st.put(key, val);
}
string s;
cout << "Please input the seeking key: (-1 mains break)" << endl;
while (cin >> s) {
if (s == "-1")
break;
if (st.contains(s))
cout << st.get(s) << endl;
else
cout << "Not found" << endl;
}
}