forked from Mooophy/Cpp-Primer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex9_31_1.cpp
38 lines (33 loc) · 882 Bytes
/
ex9_31_1.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
//
// ex9_31.cpp
// Exercise 9.31
//
// Created by pezy on 12/3/14.
//
// @Brief The program on page 354 to remove even-valued elements and
// duplicate odd ones will not work on a list or forward_list. Why?
// Revise the program so that it works on these types as well.
// @list iter += 2; -> advance(iter, 2);
//
// Refactored by Yue Wang Oct 2015
//
#include <iostream>
#include <list>
using std::list;
using std::cout;
using std::advance;
auto remove_evens_and_double_odds(list<int>& data)
{
for(auto cur = data.begin(); cur != data.end();)
if (*cur & 0x1)
cur = data.insert(cur, *cur), advance(cur, 2);
else
cur = data.erase(cur);
}
int main()
{
list<int> data { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
remove_evens_and_double_odds(data);
for (auto i : data) cout << i << " ";
return 0;
}