可以使用count_if函數來統計容器中滿足特定條件的元素個數。
例如,如果要統計一個vector中大于10的元素個數,可以這樣寫:
#include <iostream>
#include <vector>
#include <algorithm>
int main() {
std::vector<int> vec = {5, 10, 15, 20, 25, 30};
int count = std::count_if(vec.begin(), vec.end(), [](int i) { return i > 10; });
std::cout << "大于10的元素個數為: " << count << std::endl;
return 0;
}
運行結果將輸出:
大于10的元素個數為: 4