91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c++ count函數的作用是什么

c++
小億
108
2023-11-03 12:01:13
欄目: 編程語言

C++的count函數是用來計算指定元素在容器中出現的次數的。

count函數的用法如下:

#include <algorithm>
#include <iostream>
#include <vector>

int main() {
    std::vector<int> numbers = {1, 2, 3, 4, 5, 1, 2, 1, 1};

    // 計算容器中元素1的個數
    int count = std::count(numbers.begin(), numbers.end(), 1);
    std::cout << "Number of 1s: " << count << std::endl;

    return 0;
}

輸出結果為:

Number of 1s: 4

上述代碼中,count函數接受三個參數:容器的起始迭代器、容器的結束迭代器和要計算的目標元素。它會遍歷容器中的每個元素,然后返回目標元素在容器中出現的次數。

在上述示例中,容器numbers中元素1出現了4次,所以輸出結果為4。

0
苗栗县| 莫力| 新宁县| 靖边县| 安塞县| 沽源县| 玉门市| 繁昌县| 芜湖市| 六枝特区| 丰原市| 邵阳市| 保定市| 宁陵县| 深州市| 廉江市| 柏乡县| 徐汇区| 临澧县| 罗甸县| 英超| 外汇| 天津市| 秀山| 托克逊县| 大名县| 囊谦县| 华亭县| 武汉市| 常山县| 历史| 洛川县| 高青县| 盖州市| 新绛县| 陕西省| 三门峡市| 长宁区| 平塘县| 泗阳县| 平利县|