count_if
傳回項目數的值符合指定之條件的範圍。
template<class InputIterator, class Predicate>
typename iterator_traits<InputIterator>::difference_type count_if(
InputIterator _First,
InputIterator _Last,
Predicate _Pred
);
參數
_First
輸入定址的 Iterator 的第一個項目位置在範圍中搜尋。_Last
輸入定址的 Iterator 將最後一個項目的位置會在範圍中搜尋。_Pred
使用者定義的述詞函式物件定義要符合的條件,如果項目是要計算的。 述詞會接受單一引數並傳回 true 和 false。
傳回值
符合條件的項目數目之某個指定的。
備註
這個樣板函式是 計數。演算法的一般化,取代述詞「等特定值」與任何述詞。
範例
// 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