gpt4 book ai didi

c++ - 如何计算 std::vector 中的值总和

转载 作者:IT老高 更新时间:2023-10-28 23:22:40 24 4
gpt4 key购买 nike

Possible Duplicate:
sum of elements in a std::vector

我有 std::vector<int>我想计算该 vector 中所有值的总和。是否有任何内置函数或者我需要编写自定义代码?

最佳答案

使用 STL 算法 std::accumulate , 在 numeric header 中。

#include <numeric>

// ...
std::vector<int> v;
// ...
int sum = std::accumulate(v.begin(), v.end(), 0);

关于c++ - 如何计算 std::vector<int> 中的值总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6743003/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com