现在的位置: 首页 > 综合 > 正文

count http://www.cplusplus.com/reference/algorithm/count/

2012年09月28日 ⁄ 综合 ⁄ 共 457字 ⁄ 字号 评论关闭
// count algorithm example
#include <iostream>
#include
<algorithm>
#include
<vector>
using namespace std;
//count 他查找一个元素出现的次数
int main () {
int mycount;

// counting elements in array:
int myints[] = {10,20,30,30,20,10,10,20}; // 8 elements
mycount = (int) count (myints, myints+8, 10);
cout
<< "10 appears " << mycount << " times.\n";

// counting elements in container:
vector<int> myvector (myints, myints+8);
mycount
= (int) count (myvector.begin(), myvector.end(), 20);
cout
<< "20 appears " << mycount << " times.\n";

return 0;
}

抱歉!评论已关闭.