命名空间
变体
操作

std::erase_if (std::flat_map)

来自 cppreference.com
< cpp‎ | 容器‎ | 扁平映射
 
 
 
 
定义在头文件 <flat_map>
template< class Key, class T, class Compare, class KeyContainer, class MappedContainer,

          class Pred >
std::flat_map<Key, T, Compare, KeyContainer, MappedContainer>::size_type
    erase_if( std::flat_map<Key, T, Compare, KeyContainer, MappedContainer>& c,

              Pred pred );
(自 C++23 起)

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

如果表达式 bool(pred(std::pair<const Key&, const T&>(e)))true,则谓词 pred 满足,其中 ec 中的某个元素。

KeyT 必须是 MoveAssignable。否则,行为未定义。

内容

[编辑] 参数

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

[编辑] 返回值

删除的元素数量。

[编辑] 复杂度

对谓词 pred 的应用次数正好为 c.size()

异常

如果 erase_if 抛出异常,c 将保持在有效但未指定的(可能是空的)状态。

备注

该算法是稳定的,也就是说,未删除的元素的顺序保持不变。

[编辑] 示例

#include <iostream>
#include <flat_map>
 
void println(auto rem, auto const& container)
{
    std::cout << rem << '{';
    for (char sep[]{0, ' ', 0}; const auto& [key, value] : container)
        std::cout << sep << '{' << key << ", " << value << '}', *sep = ',';
    std::cout << "}\n";
}
 
int main()
{
    std::flat_map<int, char> data
    {
        {1, 'a'}, {2, 'b'}, {3, 'c'}, {4, 'd'},
        {5, 'e'}, {4, 'f'}, {5, 'g'}, {5, 'g'},
    };
    println("Original:\n", data);
 
    const auto count = std::erase_if(data, [](const auto& item)
    {
        auto const& [key, value] = item;
        return (key & 1) == 1;
    });
 
    println("Erase items with odd keys:\n", data);
    std::cout << count << " items removed.\n";
}

输出

Original:
{{1, a}, {2, b}, {3, c}, {4, d}, {5, e}}
Erase items with odd keys:
{{2, b}, {4, d}}
3 items removed.

[编辑] 另请参见

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