您可以在遍历std :: list的同时删除其中的元素吗?


239

我有看起来像这样的代码:

for (std::list<item*>::iterator i=items.begin();i!=items.end();i++)
{
    bool isActive = (*i)->update();
    //if (!isActive) 
    //  items.remove(*i); 
    //else
       other_code_involving(*i);
}
items.remove_if(CheckItemNotActive);

我想在更新不活动的项目后立即将其删除,以避免再次浏览列表。但是,如果添加注释行,则出现以下错误i++:“列表迭代器不可递增”。我尝试了一些替代方法,这些替代方法在for语句中没有增加,但是我什么也无法工作。

走std :: list时删除项目的最佳方法是什么?


我还没有看到任何基于向后迭代的解决方案。我张贴了这样一个
Sancho.s ReinstateMonicaCellio

Answers:


286

您必须先增加迭代器(使用i ++),然后删除上一个元素(例如,使用i ++的返回值)。您可以将代码更改为while循环,如下所示:

std::list<item*>::iterator i = items.begin();
while (i != items.end())
{
    bool isActive = (*i)->update();
    if (!isActive)
    {
        items.erase(i++);  // alternatively, i = items.erase(i);
    }
    else
    {
        other_code_involving(*i);
        ++i;
    }
}

7
实际上,这不能保证能正常工作。使用“ erase(i ++);”,我们只知道预先增加的值将传递给aser(),并且i在分号之前增加,而不必在调用ease()之前增加。“迭代器上一个= i ++;擦除(上一个);” 肯定会起作用,使用返回值也一样
James Curran

58
不,詹姆斯,在调用擦除之前,i会递增,并且先前的值会传递给函数。在调用函数之前,必须对函数的参数进行全面评估。
布赖恩·尼尔

28
// @詹姆斯·柯伦:那是不对的。在调用函数之前,将对所有参数进行完全求值。
马丁·约克

9
马丁·约克是正确的。调用函数之前,对函数调用的所有参数进行全面评估,没有例外。这就是函数的工作原理。它无关,与你的foo.b(我++)C(1 ++)为例(这是在任何情况下,未定义)。
jalf

75
备用用法i = items.erase(i)更安全,因为它等效于列表,但是如果有人将容器更改为矢量,则备用用法仍然有效。使用向量,delete()将所有内容向左移动以填充孔。如果您尝试使用在擦除后递增迭代器的代码删除最后一个项目,则末端移至左侧,而迭代器移至右侧(越过末端)。然后你崩溃了。
埃里克·塞普潘恩

133

您想做:

i= items.erase(i);

这将正确更新迭代器,使其指向删除迭代器后的位置。


80
请注意,您不能只是将该代码放入for循环中。否则,每次删除元素时都会跳过一个元素。
Michael Kristofik,

2
他能不能我- 每次遵循他的一段代码来避免跳过?
狂热爱好者

1
@enthusiasticgeek,如果会发生什么i==items.begin()
MSN

1
@enthusiasticgeek,此时您应该这样做i= items.erase(i);。这是规范形式,已经处理了所有这些细节。
MSN 2012年

6
迈克尔指出了一个巨大的“陷阱”,我现在不得不处理同样的事情。我发现避免这种情况的最简单方法就是将for()循环分解为while()并小心进行递增
Anne Quinn 2014年

22

您需要结合使用Kristo的答案和MSN的答案:

// Note: Using the pre-increment operator is preferred for iterators because
//       there can be a performance gain.
//
// Note: As long as you are iterating from beginning to end, without inserting
//       along the way you can safely save end once; otherwise get it at the
//       top of each loop.

std::list< item * >::iterator iter = items.begin();
std::list< item * >::iterator end  = items.end();

while (iter != end)
{
    item * pItem = *iter;

    if (pItem->update() == true)
    {
        other_code_involving(pItem);
        ++iter;
    }
    else
    {
        // BTW, who is deleting pItem, a.k.a. (*iter)?
        iter = items.erase(iter);
    }
}

当然,最高效,最SuperCool®STL的东西就是这样:

// This implementation of update executes other_code_involving(Item *) if
// this instance needs updating.
//
// This method returns true if this still needs future updates.
//
bool Item::update(void)
{
    if (m_needsUpdates == true)
    {
        m_needsUpdates = other_code_involving(this);
    }

    return (m_needsUpdates);
}

// This call does everything the previous loop did!!! (Including the fact
// that it isn't deleting the items that are erased!)
items.remove_if(std::not1(std::mem_fun(&Item::update)));

我确实考虑过您的SuperCool方法,但犹豫的是对remove_if的调用并未明确表明目标是处理项目,而不是将它们从活动项目列表中删除。(这些项不会被删除,因为它们只是变为非活动状态,不是不必要的)
AShelly

我想你是对的。一方面,我倾向于建议更改“更新”的名称以消除不明确的地方,但事实是,此代码与函子相似,但也并非毫无意义。
麦克

合理的注释,可以修复while循环以使用end或删除未使用的定义。
迈克”

10

使用std :: remove_if算法。

编辑: 使用收藏应该像:1.准备收藏。2.过程收集。

如果您不混淆这些步骤,生活将会更加轻松。

  1. std :: remove_if。或list :: remove_if(如果您知道您使用list而不是TCollection)
  2. std :: for_each

2
std :: list具有remove_if成员函数,该函数比remove_if算法更有效(并且不需要“ remove-erase”习惯用法)。
Brian Neal

5

这是一个使用for循环的示例,该循环在列表遍历期间被删除的情况下迭代列表并递增或重新验证迭代器。

for(auto i = items.begin(); i != items.end();)
{
    if(bool isActive = (*i)->update())
    {
        other_code_involving(*i);
        ++i;

    }
    else
    {
        i = items.erase(i);

    }

}

items.remove_if(CheckItemNotActive);

4

Kristo的答案的循环版本的替代方法。

您会失去一些效率,在删除时会先后退,然后再前进,但要换取额外的迭代器增量,可以在循环范围中声明迭代器,并使代码看起来更简洁。选择什么取决于当前的优先级。

我知道答案完全没有时间了。

typedef std::list<item*>::iterator item_iterator;

for(item_iterator i = items.begin(); i != items.end(); ++i)
{
    bool isActive = (*i)->update();

    if (!isActive)
    {
        items.erase(i--); 
    }
    else
    {
        other_code_involving(*i);
    }
}

1
这也是我所使用的。但是我不确定如果要删除的元素是容器中的第一个元素是否可以保证正常工作。我认为,对于我来说,它是可行的,但是我不确定它是否可以跨平台移植。
trololo

我没有做“ -1”,但是列表迭代器不能递减吗?至少我有Visual Studio 2008的主张
。– Miles

只要将链表实现为具有头/存根节点的圆形双链表(用作end()rbegin(),并且在将empty用作begin()和rend()时),它将起作用。我不记得我在哪个平台上使用它,但是它也对我有用,因为上面提到的实现是std :: list的最常见实现。但是无论如何,几乎可以肯定这是在利用一些未定义的(按C ++标准)行为,因此最好不要使用它。
拉斐尔·加戈2014年

回复:iterator cannot be decrementederase方法需要一个random access iterator。一些收集实现提供了forward only iterator引起断言的。
杰西·奇斯霍尔姆

@Jesse Chisholm的问题是关于std :: list的,而不是一个任意的容器。std :: list提供擦除和双向迭代器。
拉斐尔·加戈

4

我有总结,这是带有示例的三种方法:

1.使用while循环

list<int> lst{4, 1, 2, 3, 5};

auto it = lst.begin();
while (it != lst.end()){
    if((*it % 2) == 1){
        it = lst.erase(it);// erase and go to next
    } else{
        ++it;  // go to next
    }
}

for(auto it:lst)cout<<it<<" ";
cout<<endl;  //4 2

2. remove_if在列表中使用成员功能:

list<int> lst{4, 1, 2, 3, 5};

lst.remove_if([](int a){return a % 2 == 1;});

for(auto it:lst)cout<<it<<" ";
cout<<endl;  //4 2

3,std::remove_if结合erase成员函数使用功能:

list<int> lst{4, 1, 2, 3, 5};

lst.erase(std::remove_if(lst.begin(), lst.end(), [](int a){
    return a % 2 == 1;
}), lst.end());

for(auto it:lst)cout<<it<<" ";
cout<<endl;  //4 2

4.使用forloop,应注意更新迭代器:

list<int> lst{4, 1, 2, 3, 5};

for(auto it = lst.begin(); it != lst.end();++it){
    if ((*it % 2) == 1){
        it = lst.erase(it);  erase and go to next(erase will return the next iterator)
        --it;  // as it will be add again in for, so we go back one step
    }
}

for(auto it:lst)cout<<it<<" ";
cout<<endl;  //4 2 

2

删除仅使指向被删除元素的迭代器无效。

因此,在这种情况下,删除* i后,我将无效,并且您无法对其进行递增。

您可以做的是先保存要删除的元素的迭代器,然后递增迭代器,然后删除保存的元素。


2
使用后增量要优雅得多。
Brian Neal

2

如果您std::list将队列视为队列,则可以使要保留的所有项目出队并入队,而仅使要删除的项目出队(而不是出队)。这是一个示例,我想从包含数字1-10的列表中删除5 ...

std::list<int> myList;

int size = myList.size(); // The size needs to be saved to iterate through the whole thing

for (int i = 0; i < size; ++i)
{
    int val = myList.back()
    myList.pop_back() // dequeue
    if (val != 5)
    {
         myList.push_front(val) // enqueue if not 5
    }
}

myList 现在只有数字1-4和6-10。


有趣的方法,但恐怕它可能会很慢。
sg7 '18年

2

向后迭代可避免在要遍历的其余元素上擦除元素的影响:

typedef list<item*> list_t;
for ( list_t::iterator it = items.end() ; it != items.begin() ; ) {
    --it;
    bool remove = <determine whether to remove>
    if ( remove ) {
        items.erase( it );
    }
}

PS:看到这个,例如,对于落后的迭代。

PS2:我没有彻底测试它是否在末端处理良好的擦除元素。


回复:avoids the effect of erasing an element on the remaining elements关于清单,可能是。对于矢量可能不是。在任意集合上不能保证这一点。例如,地图可能决定重新平衡自身。
杰西·奇斯霍尔姆

1

你可以写

std::list<item*>::iterator i = items.begin();
while (i != items.end())
{
    bool isActive = (*i)->update();
    if (!isActive) {
        i = items.erase(i); 
    } else {
        other_code_involving(*i);
        i++;
    }
}

您可以使用编写等效的代码std::list::remove_if,该代码不那么冗长,也更明确

items.remove_if([] (item*i) {
    bool isActive = (*i)->update();
    if (!isActive) 
        return true;

    other_code_involving(*i);
    return false;
});

std::vector::erase std::remove_if当项目是保持compexity在O(n)的一个载体,而不是一个列表成语应该使用-或者如果你写通用代码和物品可能与擦除单品(如矢量)没有有效的方法的容器

items.erase(std::remove_if(begin(items), end(items), [] (item*i) {
    bool isActive = (*i)->update();
    if (!isActive) 
        return true;

    other_code_involving(*i);
    return false;
}));

-4

我认为您那里有一个错误,我这样编写:

for (std::list<CAudioChannel *>::iterator itAudioChannel = audioChannels.begin();
             itAudioChannel != audioChannels.end(); )
{
    CAudioChannel *audioChannel = *itAudioChannel;
    std::list<CAudioChannel *>::iterator itCurrentAudioChannel = itAudioChannel;
    itAudioChannel++;

    if (audioChannel->destroyMe)
    {
        audioChannels.erase(itCurrentAudioChannel);
        delete audioChannel;
        continue;
    }
    audioChannel->Mix(outBuffer, numSamples);
}

我猜这对样式首选项是不受欢迎的,因为它似乎可以正常工作。是的,可以肯定,(1)它使用一个额外的迭代器,(2)对于没有充分理由将其放在其中的循环,迭代器的增量在一个奇怪的地方,(3)在决定删除后,它确实可以进行通道工作像在OP中一样。但这不是一个错误的答案。
杰西·奇斯霍尔姆
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.