forked from jaege/Cpp-Primer-5th-Exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TextQuery.cpp
42 lines (39 loc) · 1.23 KB
/
TextQuery.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
#include <sstream>
#include <cctype> // ispunct, tolower
#include "TextQuery.h"
#include "QueryResult.h"
std::string TextQuery::filter_str(const std::string &s) const {
std::string ret;
for (const auto &ch : s)
if(!std::ispunct(ch))
ret += std::tolower(ch);
return ret;
}
TextQuery::TextQuery(std::ifstream &in)
: text(new StrVec), word_map() {
for (std::string line; std::getline(in, line); text->push_back(line)) {
std::istringstream iss(line);
for (std::string word; iss >> word; ) {
auto &lns = word_map[filter_str(word)];
if (!lns)
lns.reset(new std::set<line_no_type>);
lns->insert(text->size());
}
}
}
QueryResult TextQuery::query(const std::string &word) const {
static std::shared_ptr<std::set<line_no_type>>
nodata(new std::set<line_no_type>);
auto filter_word = filter_str(word);
auto it = word_map.find(filter_word);
if (it == word_map.end())
return QueryResult(word, 0, nodata, text);
line_no_type total = 0;
for (const auto &ln : *(it->second)) {
std::istringstream iss(*(text->begin() + ln));
for (std::string wd; iss >> wd; )
if (filter_str(wd) == filter_word)
++total;
}
return QueryResult(word, total, it->second, text);
}