次の方法で共有


count_if

値が指定された条件を満たす範囲内の要素数を返します。

template<class InputIterator, class Predicate>
   typename iterator_traits<InputIterator>::difference_type count_if(
      InputIterator _First, 
      InputIterator _Last,
      Predicate _Pred
   );

パラメーター

  • _First
    検索する範囲の先頭の要素の位置を示す入力反復子。

  • _Last
    検索する範囲の最後の要素 1 を超える位置を示す入力反復子。

  • _Pred
    要素が反映させる場合に満たされている必要条件を定義するユーザー定義の述語関数オブジェクト。述語は、一つの引数を受け取り、truefalseを返します。

戻り値

条件を満たす要素の数は述語によって指定されます。

解説

このテンプレート関数は、述語に述語 「等しい」特定の値を置き換えるアルゴリズム 計算の原則です。

使用例

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

bool greater10(int value)
{
    return value >10;
}

int main()
{
    using namespace std;
    vector<int> v1;
    vector<int>::iterator Iter;

    v1.push_back(10);
    v1.push_back(20);
    v1.push_back(10);
    v1.push_back(40);
    v1.push_back(10);

    cout << "v1 = ( ";
    for (Iter = v1.begin(); Iter != v1.end(); Iter++)
        cout << *Iter << " ";
    cout << ")" << endl;

    vector<int>::iterator::difference_type result1;
    result1 = count_if(v1.begin(), v1.end(), greater10);
    cout << "The number of elements in v1 greater than 10 is: "
         << result1 << "." << endl;
}
  

必要条件

ヘッダー: <algorithm>

名前空間: std

参照

関連項目

count_if (STL Samples)

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