Spec-Zone.ru › C++

std::erase_if (std::map)

Определено в заголовке <map>
template< class Key, class T, class Compare, class Alloc, class Pred >
typename std::map<Key, T, Compare, Alloc>::size_type
    erase_if( std::map<Key, T, Compare, Alloc>& c, Pred pred );
(с C++20)

Удаляет все элементы, удовлетворяющие предикату 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 <map>
 
void print(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::map<int, char> data
    {
        {1, 'a'}, {2, 'b'}, {3, 'c'}, {4, 'd'},
        {5, 'e'}, {4, 'f'}, {5, 'g'}, {5, 'g'},
    };
    print("Original:\n", data);
 
    const auto count = std::erase_if(data, [](const auto& item)
    {
        auto const& [key, value] = item;
        return (key & 1) == 1;
    });
 
    print("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.

См. также

removeremove_if
удаляет элементы, удовлетворяющие определенным критериям
(шаблон функции)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/container/map/erase_if

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API