首页 > 编程语言 > 详细

c++11容器算法学习笔记

时间:2016-01-05 01:40:56      阅读:209      评论:0      收藏:0      [点我收藏+]

c++里面的list,vector的删除方法非常简便

 std::vector<int> c { 1,2,3,4,5,6,7 };

    int x = 5;

    c.erase(std::remove_if(c.begin(), c.end(), [x](int n) { return n < x; } ), c.end());

 

 

然而根据STL std::map中的定义void erase(iterator pos),此erase并不返回下一个元素的迭代器,因此不能采用std::list的方法
The truth is that ‘erase’ in associative containers doesn’t invalidate any iterators except those that point to elements being erased (that’s also true for ’sid::list’). For this reason, you don’t really need ‘map::erase’ to return an iterator. Just do this

for(auto it = map.begin(), ite = map.end(); it != ite;){
  if(it->second._id == remove_id)
    it = map.erase(it);
  else
    ++it;}

当然此方法同样也适合于std::list等。

c++11容器算法学习笔记

原文:http://mingtangduyao.blog.51cto.com/4876371/1731510

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!