金海佳学C++primer 练习9.27
生活随笔
收集整理的這篇文章主要介紹了
金海佳学C++primer 练习9.27
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
查找并刪除forward_list中的奇數元素
Practice 9.27
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <list> #include <iterator> #include <cmath> #include <deque> #include <cstring> #include <forward_list> using namespace std;void find_and_delete(forward_list<int> & forlst) {auto pre = forlst.before_begin();auto cur = forlst.begin();while(cur != forlst.end()) {if((*cur) & 1) {cur = forlst.erase_after(pre);}else {pre = cur;cur++;}} } void print(forward_list<int> forlst) {for(auto i : forlst) {cout << i << " ";}cout << endl; } int main() {forward_list<int> forlst = {0, 1, 2, 3, 4, 5, 6, 7, 8}; find_and_delete(forlst);cout << "The remain forward_list is: " << endl; print(forlst);return 0; }Output
The remain forward_list is: 0 2 4 6 8When all else is lost the future still remains.
總結
以上是生活随笔為你收集整理的金海佳学C++primer 练习9.27的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Apollo自动驾驶之高精地图
- 下一篇: 怎样删除office2019拥有多个都需