std::erase_if (std::flat_multiset)
来自cppreference.com
< cpp | container | flat multiset
在标头 <flat_set> 定义
|
||
template< class Key, class Compare, class KeyContainer, class Pred > |
(C++23 起) | |
从 c 中擦除所有满足谓词 pred 的元素。
当表达式 bool(pred(std::as_const(e))) 为 true 时满足谓词 pred,其中 e
为 c 中的某个元素。
Key
必须可移动赋值 (MoveAssignable) 。否则,其行为未定义。
参数
c | - | 要从中擦除的容器适配器 |
pred | - | 若应该擦除元素则对它返回 true 的谓词 |
返回值
擦除的元素数。
复杂度
恰好 c.size() 次运用谓词 pred。 线性。
异常
如果 erase_if
抛出异常,c 保留处于有效但未指明的(可能为空)状态。
注解
此算法稳定,即不改变未被删除的元素之间的顺序。
示例
运行此代码
#include <iostream> #include <flat_set> void println(auto rem, auto const& container) { std::cout << rem << '{'; for (char sep[]{0, ' ', 0}; const auto& item : container) std::cout << sep << item, *sep = ','; std::cout << "}\n"; } int main() { std::flat_multiset data{3, 3, 4, 5, 5, 6, 6, 7, 2, 1, 0}; println("起初:\n", data); auto divisible_by_3 = [](auto const& x) { return (x % 3) == 0; }; const auto count = std::erase_if(data, divisible_by_3); println("擦除所有可被 3 除的项:\n", data); std::cout << count << " 项被移除。\n"; }
输出:
起初: {0, 1, 2, 7, 6, 5, 4, 3} 擦除所有可被 3 除的项: {1, 2, 7, 5, 4} 3 项被移除。
参阅
移除满足特定判别标准的元素 (函数模板) | |
(C++20)(C++20) |
移除满足特定判别标准的元素 (niebloid) |