C++ count和count_if的使用

1)count(first,last,value):first是容器的首迭代器,last是容器的末迭代器,value是询问的元素,整个函数返回int型。count函数的功能是:统计容器中等于value元素的个数。

2)count_if(first,last,comp) (在comp为true的情况下计数) 或者 count_if(first,last,value,comp) (这个是在comp为true的情况下统计容器中等于value的元素):first为首迭代器,last为末迭代器,value为要查询的元素,comp为比较bool函数,为true则计数,函数返回型是int。

注:此两个函数复杂度是线性的,适用于小规模运算。


下面看例子:

#include 
#include 
#include 
#include 
using namespace std;

bool comp(int n)
{
   cin>>n;
   return n>5;
}


 int main()
{
    int n;
    vector  V;
    cin>>n;
    for(int i=0;i>temp;
        V.push_back(temp);
    }
    int ask;
    while(cin>>ask)
    {
        int num1=count(V.begin(),V.end(),ask);//统计容器中等于ask值的元素的个数
     int num2=count(V.begin(),V.end(),comp);//若输入的n大于5,则计数
        cout<


你可能感兴趣的:(C语言,C++)