统计vector中重复元素的个数

看代码:

#include <iostream>
#include <vector>
using namespace std;

int main(){
    vector<int> v;
    v.push_back(3);
    v.push_back(3);
    v.push_back(4);
    // depucate count
    int cnt = count(v.begin(), v.end(), 3);
    cout << "The repeat num=" << cnt << endl;
}

实际上就是对count添加了第三个参数,针对性地查找某一种元素的数量
略略略略略

    原文作者:韩湘
    原文地址: https://blog.csdn.net/qq_38228254/article/details/80136015
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞