我对c ++环境不熟悉,我试图将用java编写的代码转换为c ++,我想问一下是否有人可以帮助我在c ++中找到与java Collection.frequency等效的东西。我尝试转换的代码如下:
List<Integer> foundCount = new ArrayList<~>();
.... // some code goes here
...
int count3 = Collections.frequency(foundCount,38);
我非常感谢帮助
答案 0 :(得分:1)
标准API提供std::count
进行计数。
vector<int> v = {23 , 34 , 23 , 583 , 34 , 23};
cout << "23 appears " << count(v.begin() , v.end() , 23) << " times in v"
<< endl;