金海佳学C++primer 练习9.31

forward_list复制奇数删除偶数

Practice9.31

#include <iostream>
#include <queue>
#include <string>
#include <vector>
#include <algorithm>
#include <list>
#include <iterator>
#include <cmath>
#include <cstring>
#include <forward_list>
using namespace std;

void flst_print(forward_list<int> & flst) {
    for(auto i : flst) {
        cout << i << " ";
    }
    cout << endl;
}

int main() {
    forward_list<int> flst = {7, 8, 9, 10, 11, 12};
    auto it = flst.begin();
    auto pre_it = flst.before_begin();
    while(it != flst.end()) {
        if(*it % 2) {
            it = flst.insert_after(it, *it);
            ++it;
            ++pre_it;
            ++pre_it;
        }
        else {
            it = flst.erase_after(pre_it);
        }
    }   
    flst_print(flst);
    return 0;
}
wanglangdeMacBook-Pro:Documents wanglang$ vim test.cpp 
wanglangdeMacBook-Pro:Documents wanglang$ vim test.cpp 
wanglangdeMacBook-Pro:Documents wanglang$ vim test.cpp 
wanglangdeMacBook-Pro:Documents wanglang$ cat test.cpp 
#include <iostream>
#include <queue>
#include <string>
#include <vector>
#include <algorithm>
#include <list>
#include <iterator>
#include <cmath>
#include <cstring>
#include <forward_list>
using namespace std;

void flst_print(forward_list<int> & flst) {
    for(auto i : flst) {
        cout << i << " ";
    }
    cout << endl;
}

int main() {
    forward_list<int> flst = {7, 8, 9, 10, 11, 12};
    auto it = flst.begin();
    auto pre_it = flst.before_begin();
    cout << "Original forward_list: " << endl;
    flst_print(flst);
    while(it != flst.end()) {
        if(*it % 2) {
            it = flst.insert_after(it, *it);
            ++it;
            ++pre_it;
            ++pre_it;
        }
        else {
            it = flst.erase_after(pre_it);
        }
    }   
    cout << "Copy odd number and delete even number: " << endl;
    flst_print(flst);
    return 0;
}

Output

Original forward_list: 
7 8 9 10 11 12 
Copy odd number and delete even number: 
7 7 9 9 11 11 

The word ‘impossible’ is not in my dictionary.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值