C++ accumulate
函数是标准库中的一个算法函数,位于 <numeric>
头文件中。它用于对指定范围内的元素进行累加操作。
accumulate
函数的原型如下:
template <class InputIterator, class T>
T accumulate(InputIterator first, InputIterator last, T init);
参数说明:
first
:要处理的元素范围的起始迭代器。last
:要处理的元素范围的结束迭代器(不包含在范围内)。init
:初始值,用于累加操作。accumulate
函数会遍历指定范围内的元素,并将它们与初始值进行累加操作,然后返回累加的结果。
示例用法:
#include <iostream>
#include <numeric>
#include <vector>
int main() {
std::vector<int> numbers = {1, 2, 3, 4, 5};
int sum = std::accumulate(numbers.begin(), numbers.end(), 0);
std::cout << "Sum: " << sum << std::endl;
return 0;
}
输出结果:
Sum: 15
该示例中,accumulate
函数对 numbers
容器中的元素进行累加操作,并将初始值设为 0。最终返回的累加结果为 15。