std::accumulate

来自cppreference.com
< cpp‎ | algorithm
 
 
算法库
受约束算法及范围上的算法 (C++20)
包含算法例如 ranges::copy, ranges::sort, ...
执行策略 (C++17)
排序和相关操作
划分操作
排序操作
二分搜索操作(在已划分范围上)
集合操作(在有序范围上)
归并操作(在有序范围上)
堆操作
最小/最大操作
(C++11)
(C++17)
字典序比较操作
排列操作
C 库

数值运算
(C++11)                       
accumulate
(C++17)
在未初始化内存上的操作
 
 
在标头 <numeric> 定义
template< class InputIt, class T >
T accumulate( InputIt first, InputIt last, T init );
(1) (C++20 起为 constexpr)
template< class InputIt, class T, class BinaryOp >
T accumulate( InputIt first, InputIt last, T init, BinaryOp op );
(2) (C++20 起为 constexpr)

计算给定值 init 与范围 [firstlast) 中各元素的和。

1) 以初始值 init 初始化(具有 T 类型的)累加器 acc,然后按顺序对范围 [firstlast) 的每个迭代器 i 通过 acc = acc + *i (C++20 前)acc = std::move(acc) + *i (C++20 起) 进行累加。
2) 以初始值 init 初始化(具有 T 类型的)累加器 acc,然后按顺序对范围 [firstlast) 的每个迭代器 i 通过 acc = op(acc, *i) (C++20 前)acc = op(std::move(acc), *i) (C++20 起) 进行累加。

如果满足以下任意条件,那么行为未定义:

参数

first, last - 要求和的元素范围
init - 和的初值
op - 被使用的二元函数对象。

该函数的签名应当等价于:

Ret fun(const Type1 &a, const Type2 &b);

签名中并不需要有 const &
类型 Type1 必须使得 T 类型的对象能隐式转换到 Type1。类型 Type2 必须使得 InputIt 类型的对象能在解引用后隐式转换到 Type2。 类型 Ret 必须使得 T 类型对象能被赋 Ret 类型值。 ​

类型要求
-
InputIt 必须满足老式输入迭代器 (LegacyInputIterator)

返回值

所有修改完成后的 acc

可能的实现

accumulate (1)
template<class InputIt, class T>
constexpr // C++20 起
T accumulate(InputIt first, InputIt last, T init)
{
    for (; first != last; ++first)
        init = std::move(init) + *first; // C++20 起有 std::move
 
    return init;
}
accumulate (2)
template<class InputIt, class T, class BinaryOperation>
constexpr // C++20 起
T accumulate(InputIt first, InputIt last, T init, BinaryOperation op)
{
    for (; first != last; ++first)
        init = op(std::move(init), *first); // C++20 起有 std::move
 
    return init;
}

注解

std::accumulate 进行左折叠。为进行右折叠,必须逆转二元运算符的实参顺序,并使用逆序迭代器。

如果使用类型推导,那么 op 就会对与 init 相同类型的值进行操作,这可能引入对迭代器元素非预期的转型,例如 std::accumulate(v.begin(), v.end(), 0)vstd::vector<double> 时会给出错误的结果。

示例

#include <functional>
#include <iostream>
#include <numeric>
#include <string>
#include <vector>
 
int main()
{
    std::vector<int> v{1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
 
    int sum = std::accumulate(v.begin(), v.end(), 0);
    int product = std::accumulate(v.begin(), v.end(), 1, std::multiplies<int>());
 
    auto dash_fold = [](std::string a, int b)
    {
        return std::move(a) + '-' + std::to_string(b);
    };
 
    std::string s = std::accumulate(std::next(v.begin()), v.end(),
                                    std::to_string(v[0]), // 用首元素开始
                                    dash_fold);
 
    // 使用逆向迭代器右折叠
    std::string rs = std::accumulate(std::next(v.rbegin()), v.rend(),
                                     std::to_string(v.back()), // 用末元素开始
                                     dash_fold);
 
    std::cout << "和:" << sum << '\n'
              << "积:" << product << '\n'
              << "以短横线分隔的字符串:" << s << '\n'
              << "以短横线分隔的字符串(右折叠):" << rs << '\n';
}

输出:

和:55
积:3628800
以短横线分隔的字符串:1-2-3-4-5-6-7-8-9-10
以短横线分隔的字符串(右折叠):10-9-8-7-6-5-4-3-2-1

缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

缺陷报告 应用于 出版时的行为 正确行为
LWG 242 C++98 op 不能有任何副作用 它不能修改涉及到的范围

参阅

计算范围内各相邻元素之间的差
(函数模板)
计算两个范围的元素的内积
(函数模板)
计算范围内元素的部分和
(函数模板)
(C++17)
类似 std::accumulate,但不依序执行
(函数模板)
左折叠范围内的元素
(niebloid)