c++ 在指定长度的数组或者容器中,统计元素出现的次数(count)


 

#include <iostream>     // cout
#include <algorithm>    // count
#include <vector>       // vector
using namespace std;
int main () {
    // counting elements in array:
    int myints[] = {10,20,30,30,20,10,10,20};   // 8 elements
    int mycount = count(myints, myints+6, 10);
    cout << "10 appears " << mycount << " times.\n";
    
    // counting elements in container:
    vector<int> myvector (myints, myints+8);
    mycount = count(myvector.begin()+2, myvector.end(), 20);
    cout << "20 appears " << mycount  << " times.\n";
    
    return 0;
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM