首頁 > 後端開發 > C++ > 在 C 中對 std::vector 的元素求和的有效方法是什麼?

在 C 中對 std::vector 的元素求和的有效方法是什麼?

DDD
發布: 2024-12-03 16:45:13
原創
529 人瀏覽過

What are the Efficient Ways to Sum the Elements of a std::vector in C  ?

對std::vector 中的元素進行求和的有效方法

在需要確定std::vector 中元素的累積和的情況下::向量,有幾種有效的方法。

C 03解:

  1. 經典 For循環:

    int sum_of_elems = 0;
    for (std::vector<int>::iterator it = vector.begin(); it != vector.end(); ++it)
        sum_of_elems += *it;
    登入後複製
  2. 標準演算法:

    #include <numeric>
    
    sum_of_elems = std::accumulate(vector.begin(), vector.end(), 0);
    登入後複製

    注意: 參數的類型類型決定初始值和結果類型。對於浮點輸入,請使用 0.0 而不是 0。

C 11 以上擴充:

  1. 自動向量類型處理:

    #include <numeric>
    
    sum_of_elems = std::accumulate(vector.begin(), vector.end(),
                                   decltype(vector)::value_type(0));
    登入後複製
  2. std::for_each使用:

    std::for_each(vector.begin(), vector.end(), [&](int n) {
        sum_of_elems += n;
    });
    登入後複製
  3. 基於範圍的循環:

    for (auto& n : vector)
        sum_of_elems += n;
    登入後複製

  1. #include <numeric>
    
    auto result = std::reduce(v.begin(), v.end());
    登入後複製

std::透過自動結果減少類型:此函數的重載支援對大量集合進行並行處理。

以上是在 C 中對 std::vector 的元素求和的有效方法是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板