命名空间
变体
操作

std::erase_if (std::set)

来自 cppreference.com
< cpp‎ | container‎ | set
 
 
 
 
定义在头文件 <set>
template< class Key, class Compare, class Alloc,

          class Pred >
std::set<Key, Compare, Alloc>::size_type
    erase_if( std::set<Key, Compare, Alloc>& c,

              Pred pred );
(自 C++20)

c 中删除所有满足谓词 pred 的元素。

等效于

auto old_size = c.size();
for (auto first = c.begin(), last = c.end(); first != last;)
{
    if (pred(*first))
        first = c.erase(first);
    else
        ++first;
}
return old_size - c.size();

内容

[编辑] 参数

c - 要从中删除元素的容器
pred - 谓词,如果应删除元素,则返回 true

[编辑] 返回值

已删除元素的数量。

[编辑] 复杂度

线性。

[编辑] 示例

#include <iostream>
#include <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::set data{3, 3, 4, 5, 5, 6, 6, 7, 2, 1, 0};
    println("Original:\n", data);
 
    auto divisible_by_3 = [](auto const& x) { return (x % 3) == 0; };
 
    const auto count = std::erase_if(data, divisible_by_3);
 
    println("Erase all items divisible by 3:\n", data);
    std::cout << count << " items erased.\n";
}

输出

Original:
{0, 1, 2, 3, 4, 5, 6, 7}
Erase all items divisible by 3:
{1, 2, 4, 5, 7}
3 items erased.

[编辑] 另请参阅

删除满足特定条件的元素
(函数模板) [编辑]
删除满足特定条件的元素
(niebloid)[编辑]