C++ vector删除符合条件元素的编程技巧

描述

  C++ vector中实际删除元素使用的是容器vecrot中std::vector::erase()方法。

  C++ 中std::remove()并不删除元素,因为容器的size()没有变化,只是元素的替换。

  1.std::vector::erase()

  函数原型:iterator erase (iterator position);  //删除指定元素

  iterator erase (iterator first, iterator last);  //删除指定范围内的元素

  返回值:指向删除元素(或范围)的下一个元素。(An iterator pointing to the new location of the element that followed the last element erased by the function call. This is the container end if the operation erased the last element in the sequence.)

  2.代码实例
 

#include
#include
#include
using namespace std;
 
int out(vector &iVec)
{
    for(int i=0;i
        cout<
    cout<
    return 0;
}
 
int main()
{
    vector iVec;
    vector::iterator it;
    int i;
    for( i=0;i<10;i++)
        iVec.push_back(i);
 
    cout<<"The Num(old):";out(iVec);
    for(it=iVec.begin();it!=iVec.end();)
    {
        if(*it % 3 ==0)
            it=iVec.erase(it);    //删除元素,返回值指向已删除元素的下一个位置    
        else
            ++it;    //指向下一个位置
    }
    cout<<"The Num(new):";out(iVec);
    return 0;
}
打开APP阅读更多精彩内容
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

全部0条评论

快来发表一下你的评论吧 !

×
20
完善资料,
赚取积分