-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathstl_10_stable_partition_remove_if.cpp
57 lines (50 loc) · 1.16 KB
/
stl_10_stable_partition_remove_if.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
// code_report
// https://youtu.be/kf67rbbR6nk
#include <iostream>
#include <vector>
#include <algorithm>
#include <numeric>
template<typename T>
void print(T t) {
for (const auto& e : t) std::cout << e << ' ';
std::cout << '\n';
}
void example1() {
std::vector<int> v(10);
std::iota(begin(v), end(v), 1);
print(v);
auto is_even = [](auto e) { return e % 2 == 0; };
std::partition(begin(v), end(v), is_even);
print(v);
}
void example2() {
std::vector<int> v(10);
std::iota(begin(v), end(v), 1);
print(v);
auto is_even = [](auto e) { return e % 2 == 0; };
std::stable_partition(begin(v), end(v), is_even);
print(v);
}
void example3() {
std::vector<int> v(10);
std::iota(begin(v), end(v), 1);
print(v);
auto is_odd = [](auto e) { return e % 2 != 0; };
std::remove_if(begin(v), end(v), is_odd);
print(v);
}
void example4() {
std::vector<int> v(10);
std::iota(begin(v), end(v), 1);
print(v);
auto is_odd = [](auto e) { return e % 2 != 0; };
v.erase(std::remove_if(begin(v), end(v), is_odd), end(v));
print(v);
}
int main () {
example1();
example2();
example3();
example4();
return 0;
}