名稱空間
變體
操作

std::experimental::erase_if (std::vector)

來自 cppreference.com
< cpp‎ | 實驗性
定義於標頭檔案 <experimental/vector>
template< class T, class Alloc, class Pred >
void erase_if( std::vector<T, Alloc>& c, Pred pred );
(庫基礎 TS v2)

擦除容器中所有滿足謂詞 pred 的元素。等價於 c.erase(std::remove_if(c.begin(), c.end(), pred), c.end());

目錄

[編輯] 引數

c - 要從中刪除元素的容器
pred - 決定哪些元素應該被擦除的謂詞

[編輯] 複雜度

線性。

[編輯] 示例

#include <experimental/vector>
#include <iostream>
 
template<typename Os, typename Container>
inline Os& operator<<(Os& os, Container const& container)
{
    os << "{ ";
    for (const auto& item : container)
        os << item << ' ';
    return os << '}';
}
 
int main()
{
    std::vector<int> data{3, 3, 4, 5, 5, 6, 6, 7, 2, 1, 0};
    std::cout << "Original:\n" << data << '\n';
    auto divisible_by_3 = [](auto const& x) { return (x % 3) == 0; };
    std::experimental::erase_if(data, divisible_by_3);
    std::cout << "Erase all items divisible by 3:\n" << data << '\n';
}

輸出

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

[編輯] 參見

移除滿足特定標準的元素
(函式模板) [編輯]
(庫基礎 2 TS)
std::vector 中擦除所有等於特定值的元素
(函式模板) [編輯]