C++ vector刪除相符前提的元素示例分享。本站提示廣大學習愛好者:(C++ vector刪除相符前提的元素示例分享)文章只能為提供參考,不一定能成為您想要的結果。以下是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<iostream>
#include<string>
#include<vector>
using namespace std;
int out(vector<int> &iVec)
{
for(int i=0;i<iVec.size();i++)
cout<<iVec[i]<<ends;
cout<<endl;
return 0;
}
int main()
{
vector<int> iVec;
vector<int>::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;
}