std::erase, std::erase_if (std::vector)
来自cppreference.com
定义于头文件 <vector>
|
||
template< class T, class Alloc, class U > void erase(std::vector<T,Alloc>& c, const U& value); |
(1) | (C++20 起) |
template< class T, class Alloc, class Pred > void erase_if(std::vector<T,Alloc>& c, Pred pred); |
(2) | (C++20 起) |
1) 从容器中擦除所有比较等于
value
的元素。等价于 c.erase(std::remove(c.begin(), c.end(), value), c.end()); 。参数
c | - | 要从中擦除的容器 |
value | - | 要擦除的值 |
pred | - | 若应该擦除元素则返回 true 的一元谓词。 对每个(可为 const 的) |
复杂度
线性。
示例
运行此代码
#include <iostream> #include <numeric> #include <vector> void print_container(const std::vector<char>& c) { for (auto x : c) { std::cout << x << ' '; } std::cout << '\n'; } int main() { std::vector<char> cnt(10); std::iota(cnt.begin(), cnt.end(), '0'); std::cout << "Init:\n"; print_container(cnt); std::erase(cnt, '5'); std::cout << "Erase \'5\':\n"; print_container(cnt); std::erase_if(cnt, [](char x) { return (x - '0') % 2 == 0; }); std::cout << "Erase all even numbers:\n"; print_container(cnt); }
输出:
Init: 0 1 2 3 4 5 6 7 8 9 Erase '5': 0 1 2 3 4 6 7 8 9 Erase all even numbers: 1 3 7 9
参阅
移除满足特定判别标准的元素 (函数模板) |