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