共用方式為


count

傳回項目數的值符合指定的範圍。

template<class InputIterator, class Type> 
   typename iterator_traits<InputIterator>::difference_type count( 
      InputIterator _First,  
      InputIterator _Last,  
      const Type& _Val 
   );

參數

  • _First
    輸入定址的 Iterator 第一個項目位置範圍周遊。

  • _Last
    輸入定址的 Iterator 到最後的項目位置的範圍中周遊。

  • _Val
    是項目值的計數。

傳回值

計數是 _Val中的項目數範圍 InputIterator 的差異型別 [ _First, _Last )。

備註

operator== 可用來判斷項目與指定值之間的遊戲必須安排在其運算元之間的等價關聯。

這個演算法推斷計數為樣板函式 count_if滿足任何述詞的項目。

範例

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

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 result;
    result = count(v1.begin(), v1.end(), 10);
    cout << "The number of 10s in v2 is: " << result << "." << endl;
}
  

需求

標頭:<algorithm>

命名空間: std

請參閱

參考

count (STL 範例)

標準樣板程式庫