最佳答案
我试图根据特定条件从地图上删除一系列元素。我如何做它使用 STL 算法?
最初我想使用 remove_if
,但是这是不可能的,因为 move _ if 不适用于关联容器。
是否有任何“移除 _ 如果”等效算法的地图工程?
作为一个简单的选项,我想通过循环地图和擦除。但是循环遍历地图并删除是一个安全的选择吗?(因为迭代器在擦除后无效)
我举了以下例子:
bool predicate(const std::pair<int,std::string>& x)
{
return x.first > 2;
}
int main(void)
{
std::map<int, std::string> aMap;
aMap[2] = "two";
aMap[3] = "three";
aMap[4] = "four";
aMap[5] = "five";
aMap[6] = "six";
// does not work, an error
// std::remove_if(aMap.begin(), aMap.end(), predicate);
std::map<int, std::string>::iterator iter = aMap.begin();
std::map<int, std::string>::iterator endIter = aMap.end();
for(; iter != endIter; ++iter)
{
if(Some Condition)
{
// is it safe ?
aMap.erase(iter++);
}
}
return 0;
}