在C++中,可以使用STL中的count_if
函數來統計滿足特定條件的元素個數。該函數位于<algorithm>
頭文件中。
下面是一個簡單的示例,演示如何使用count_if
函數統計一個整數數組中大于10的元素個數:
#include <iostream>
#include <algorithm>
#include <vector>
int main() {
std::vector<int> numbers = {5, 10, 15, 20, 25};
int count = std::count_if(numbers.begin(), numbers.end(), [](int num) {
return num > 10;
});
std::cout << "There are " << count << " numbers greater than 10 in the array." << std::endl;
return 0;
}
在上面的示例中,使用count_if
函數統計numbers
容器中大于10的元素個數。在lambda表達式中,定義了一個條件函數,用于判斷元素是否大于10。count_if
函數會遍歷容器中的每個元素,并將滿足條件的元素個數返回給count
變量,最終輸出結果。