-
Notifications
You must be signed in to change notification settings - Fork 246
/
10.22.cpp
42 lines (36 loc) · 1.3 KB
/
10.22.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 <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <iostream>
std::string make_plural(size_t ctr, const std::string &word,
const std::string &ending = "s") {
return (ctr > 1) ? word + ending : word;
}
void elimDups(std::vector<std::string> &words) {
std::sort(words.begin(), words.end());
auto end_unique = std::unique(words.begin(), words.end());
words.erase(end_unique, words.end());
}
bool shorter(const std::string &s, std::string::size_type sz) {
return s.size() <= sz;
}
void biggies(std::vector<std::string> words, // use value instead of reference
std::vector<std::string>::size_type sz) {
elimDups(words);
auto iter = std::partition(words.begin(), words.end(),
std::bind(shorter, std::placeholders::_1, sz));
//auto count = iter - words.begin();
auto count = std::count_if(words.begin(), words.end(),
std::bind(shorter, std::placeholders::_1, sz));
std::cout << count << " " << make_plural(count, "word") << " of length "
<< sz << " or shorter." << std::endl;
std::for_each(words.begin(), iter,
[](const std::string &s) { std::cout << s << " "; });
}
int main() {
std::vector<std::string> words;
for (std::string s; std::cin >> s; words.push_back(s)) {}
biggies(words, 6);
return 0;
}