What is the proper way to remove elements from a C++ vector while iterating through it? I am iterating over an array and want to remove some elements that match a certain condition. I've been told that it's a bad thing to modify it during traversal.
I guess I should also mention that this is an array of pointers that I need to free before removing them.
EDIT:
So here's a snippet of my code.
void RoutingProtocolImpl::removeAllInfinity()
{
dv.erase(std::remove_if(dv.begin(), dv.end(), hasInfCost), dv.end());
}
bool RoutingProtocolImpl::hasInfCost(RoutingProtocolImpl::dv_entry *entry)
{
if (entry->link_cost == INFINITY_COST)
{
free(entry);
return true;
}
else
{
return false;
}
}
I'm getting the following error when compiling:
RoutingProtocolImpl.cc:368: error: argument of type bool (RoutingProtocolImpl::)(RoutingProtocolImpl::dv_entry*)' does not matchbool (RoutingProtocolImpl::*)(RoutingProtocolImpl::dv_entry*)'
Sorry, I'm kind of a C++ newb.
deleteinstead offree?freeis a C mechanism and should not be mixed up with Object code. – Matthieu M. Apr 15 '10 at 6:44vector<T*>and the vector has ownership of the objects, consider usingboost::ptr_vector<T>instead, this way you'll make sure not to leak ;) The interface is very similar to avector<T>, it just provides handling of pointers and ownership under the hood. – Matthieu M. Apr 15 '10 at 6:45