forked from jaege/Cpp-Primer-5th-Exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
11.3.cpp
32 lines (29 loc) · 809 Bytes
/
11.3.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
#include <map>
#include <set>
#include <vector>
#include <string>
#include <iterator>
#include <iostream>
#include <fstream>
std::map<std::string, size_t> count_words(std::vector<std::string> &words) {
std::map<std::string, size_t> counts;
for (const auto &w : words)
++counts[w];
return counts;
}
int main() {
std::string filename;
std::cin >> filename;
std::ifstream in(filename);
if (!in.is_open()) {
std::cerr << "Cannot open file: " << filename << std::endl;
return -1;
}
std::istream_iterator<std::string> i_iter(in), eof;
std::vector<std::string> words(i_iter, eof);
auto counts = count_words(words);
for (const auto &w: counts)
std::cout << w.first << " occurs " << w.second
<< (w.second > 1 ? " times." : " time.") << std::endl;
return 0;
}