c/c++ 标准容器 forward_list resize 操作

2021-06-29 23:06

阅读:700

标签:list   end   class   color   元素   insert   ++   res   stream   

c/c++ 标准容器 forward_list resize 操作

forward_list特有的方法:

  • insert_after
  • emplace_after
  • erase_after

知识点

1,forward_list容器的使用,对应代码里的test1

2,resize的使用,对应代码里的test2

#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;

int main(){
  //test1 forward_list容器的使用                                                
  //insert_after,emplace_after,erase_after                                      
  /*                                                                            
  forward_list fl{0,1,2,3,4,5};                                            
  //返回头迭代器                                                                
  auto head = fl.before_begin();                                                
  //在head的后面插入6,并返回指向6的迭代器,第一个元素是6                        
  auto it = fl.insert_after(head, 6);                                           
  cout  li(5,11);
  cout 

c/c++ 学习互助QQ群:877684253

本人微信:xiaoshitou5854

c/c++ 标准容器 forward_list resize 操作

标签:list   end   class   color   元素   insert   ++   res   stream   

原文地址:https://www.cnblogs.com/xiaoshiwang/p/9644009.html


评论


亲,登录后才可以留言!