您的位置:首页 > 其它

遍历std::list过程中删除元素后继续遍历过程

2016-02-18 01:08 344 查看
std::list::erase

Erase elements
Removes from the list container either a single element (position) or a range of elements ([first,last)).
This effectively reduces the container size by the number of elements removed, which are destroyed.
Unlike other standard sequence containers, list and forward_list objects are specifically designed to be efficient inserting and removing elements in any position, even in the middle of the sequence.

返回值

An iterator pointing to 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.

int iArray[10] = { 2, 3, 6, 4, 1, 17, 4, 9, 25, 4 };
list<int> iList(iArray, iArray + 10);
vector<int> iVec;
for(list<int>::iterator it = iList.begin();
it != iList.end(); it++) {
iVec.push_back(*it);
if(*it == 4) {
it = iList.erase(it);
it--;
}
}
cout << "iVec: ";
for(auto& i : iVec) {
cout << i << " ";
}
cout << endl;
cout << "iList: ";
for(auto& i : iList) {
cout << i << " ";
}
cout << endl;


Output:
iVec: 2 3 6 4 1 17 4 9 25 4
iList: 2 3 6 1 17 9 25

或者:

for(list<int>::iterator it = iList.begin();
it != iList.end();) {
iVec.push_back(*it);
if(*it == 4) {
it = iList.erase(it);
} else {
it++;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: