remove_if

残りの要素の順序を自由におよび指定した値の新しい範囲の末尾を返さないで特定の範囲の述語を満たす要素を削除します。

template<class ForwardIterator, class Predicate> 
   ForwardIterator remove_if( 
      ForwardIterator _First,  
      ForwardIterator _Last, 
      Predicate _Pred 
   );

パラメーター

  • _First
    要素が削除される範囲内の先頭の要素の位置を指し示す前方反復子。

  • _Last
    要素が削除されている範囲の最後の要素の一つ前の位置 1 を指し示す前方反復子。

  • _Pred
    満たす必要がある単項述語は要素の値に置き換える必要があります。

戻り値

変更された範囲の新しい分岐点、指定された値の残りシーケンスの最後の要素を指す 1 を自由に対処する前方反復子。

解説

参照される範囲が有効である必要があります。; すべてのポインターは dereferenceable なり、シーケンス内で最後の位置は incrementation してプログラムからアクセスできます。

削除される要素の順序が安定しても変化しません。

要素間に等しいかどうかを確認するために使用される operator== がオペランド間の等価関係を課さなければ必要があります。

複雑さは線形です: (_Last – _First) かどうかを比較できます。

リストには、ポインターを再リンクして、より効率的なメンバー関数バージョンを削除しています。

使用例

// alg_remove_if.cpp
// compile with: /EHsc
#include <vector>
#include <algorithm>
#include <iostream>

bool greater6 ( int value ) {
   return value >6;
}

int main( ) {
   using namespace std;
   vector <int> v1, v2;
   vector <int>::iterator Iter1, Iter2, new_end;

   int i;
   for ( i = 0 ; i <= 9 ; i++ )
      v1.push_back( i );

   int ii;
   for ( ii = 0 ; ii <= 3 ; ii++ )
      v1.push_back( 7 );
   
   random_shuffle ( v1.begin( ), v1.end( ) );
   cout << "Vector v1 is ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")." << endl;

   // Remove elements satisfying predicate greater6
   new_end = remove_if (v1.begin( ), v1.end( ), greater6 );

   cout << "Vector v1 with elements satisfying greater6 removed is\n ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")." << endl;

   // To change the sequence size, use erase
   v1.erase (new_end, v1.end( ) );

   cout << "Vector v1 resized elements satisfying greater6 removed is\n ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")." << endl;
}

出力例

Vector v1 is ( 7 1 9 2 0 7 7 3 4 6 8 5 7 7 ).
Vector v1 with elements satisfying greater6 removed is
 ( 1 2 0 3 4 6 5 3 4 6 8 5 7 7 ).
Vector v1 resized elements satisfying greater6 removed is
 ( 1 2 0 3 4 6 5 ).

必要条件

ヘッダー: <algorithm>

名前空間: std

参照

関連項目

remove_if (STL のサンプル)

標準テンプレート ライブラリ