Is there a better alternative to std::remove_if to remove elements from a vector?(有没有比 std::remove_if 更好的替代方法来从向量中删除元素?)
问题描述
从 std::vector
或其他容器中删除具有特定属性的元素的任务有助于实现函数式风格:为什么要为循环、内存释放和正确移动数据而烦恼?
The task of removing elements with a certain property from a std::vector
or other container lends itself to a functional style implementation: Why bother with loops, memory deallocation and moving data around correctly?
但是,在 C++ 中执行此操作的标准方法似乎是以下习语:
However the standard way of doing this in C++ seems to be the following idiom:
std::vector<int> ints;
...
ints.erase(
std::remove_if(ints.begin(),
ints.end(),
[](int x){return x < 0;}),
ints.end());
此示例从整数向量中删除所有小于零的元素.
This example removes all elements less than zero from an integer vector.
我发现它不仅丑,而且容易误用.很明显 std::remove_if
不能改变向量的大小(正如它的名字所暗示的那样),因为它只能传递迭代器.但是很多开发者,包括我自己,一开始并没有意识到这一点.
I find it not only ugly but also easy to use incorrectly. It is clear that std::remove_if
cannot change the size of the vector (as its name would suggest) because it only gets iterators passed. But many developers, including myself, don't get that in the beginning.
那么有没有更安全、更优雅的方式来实现这一目标?如果没有,为什么?
So is there a safer and hopefully more elegant way to achieve this? If not, why?
推荐答案
我发现它不仅丑,而且容易误用.
I find it not only ugly but also easy to use incorrectly.
别担心,我们一开始都做到了.
Don't worry, we all did at the start.
很明显, std::remove_if 不能改变向量的大小(正如它的名字所暗示的那样),因为它只会让迭代器通过.但是很多开发者,包括我自己,一开始并没有意识到这一点.
It is clear that std::remove_if cannot change the size of the vector (as its name would suggest) because it only gets iterators passed. But many developers, including myself, don't get that in the beginning.
一样.它让每个人都感到困惑.多年前,它可能不应该被称为 remove_if
.事后诸葛亮,嗯?
Same. It confuses everyone. It probably shouldn't have been called remove_if
all those years ago. Hindsight, eh?
那么有没有更安全、更优雅的方式来实现这一目标?
So is there a safer and hopefully more elegant way to achieve this?
没有
如果不是,为什么?
因为这是从容器中删除项目时保持性能的最安全、最优雅的方式,其中删除项目会使迭代器失效.
Because this is the safest, most elegant way that preserves performance when deleting items from a container in which deleting an item invalidates iterators.
期待:
有什么我可以做的吗?
是的,把这个习语包装成一个函数
Yes, wrap this idiom into a function
template<class Container, class F>
auto erase_where(Container& c, F&& f)
{
return c.erase(std::remove_if(c.begin(),
c.end(),
std::forward<F>(f)),
c.end());
}
激励示例中的调用然后变为:
The call in the motivating example then becomes:
auto is_negative = [](int x){return x < 0;};
erase_where(ints, is_negative);
或
erase_where(ints, [](int x){return x < 0;});
这篇关于有没有比 std::remove_if 更好的替代方法来从向量中删除元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有没有比 std::remove_if 更好的替代方法来从向量中删除元素?
基础教程推荐
- 从 std::cin 读取密码 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01