(1) forward_list 的头文件是 #include <forward_list>
以下程序是删除forward_list中元素的程序代码。
严格注意forward_list(单向链表)中是没有emplace,erase,insert操作的
只有emplace_after,erase_after,insert_after
#include <iostream>
#include <forward_list>
using namespace std;
int main(){
forward_list<int> f = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
auto pr = f.before_begin();
auto it = f.begin();
while(it != f.end()){
if(*it%2){
it = f.erase_after(pr); //pr 得用要删除的元素之前的迭代器
}
else pr = it++;
}
for (auto t : f){
cout << t << " ";
}
return 0;
}