forked from jzplp/Cpp-Primer-Answer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path14.40.cpp
67 lines (54 loc) · 1.48 KB
/
14.40.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
60
61
62
63
64
65
#include<iostream>
#include<vector>
#include<string>
#include<algorithm>
struct Comp1
{
bool operator()(const std::string &s1, const std::string & s2)
{
return s1.size() < s2.size();
}
};
struct Comp2
{
Comp2(std::vector<std::string>::size_type i) : sz(i) {}
bool operator()(const std::string &s)
{
return s.size() >= sz;
}
std::vector<std::string>::size_type sz;
};
struct Out
{
bool operator()(const std::string &s)
{
std::cout << s << " ";
}
};
std::string make_plural(size_t ctr, const std::string &word, const std::string &ending = "s");
void elimDups(std::vector<std::string> &words)
{
std::sort(words.begin(), words.end());
std::vector<std::string>::iterator ip = std::unique(words.begin(), words.end());
words.erase(ip, words.end());
}
void biggies(std::vector<std::string> &words, std::vector<std::string>::size_type sz)
{
elimDups(words);
std::stable_sort(words.begin(), words.end(), Comp1());
std::vector<std::string>::iterator wc = find_if(words.begin(), words.end(), Comp2(sz));
std::vector<std::string>::difference_type count = words.end() - wc;
std::cout << count << " " << make_plural(count, "word", "s") << " of length " << sz << " or longer" << std::endl;
for_each(wc, words.end(), Out());
std::cout << std::endl;
}
int main()
{
std::vector<std::string> v{"1","23","345","12","2342","21"};
biggies(v, 3);
return 0;
}
std::string make_plural(size_t ctr, const std::string &word, const std::string &ending)
{
return (ctr > 1) ? word + ending : word;
}