std::adjacent_difference

来自cppreference.com
< cpp‎ | algorithm
 
 
算法库
受约束算法及范围上的算法 (C++20)
受约束算法: std::ranges::copy, std::ranges::sort, ...
执行策略 (C++17)
不修改序列的操作
(C++11)(C++11)(C++11)
(C++17)
修改序列的操作
Partitioning operations
划分操作
排序操作
(C++11)
二分搜索操作
集合操作(在已排序范围上)
堆操作
(C++11)
最小/最大操作
(C++11)
(C++17)

排列
数值运算
(C++11)
adjacent_difference
未初始化存储上的操作
(C++17)
(C++17)
(C++17)
C 库
 
在标头 <numeric> 定义
(1)
template< class InputIt, class OutputIt >
OutputIt adjacent_difference( InputIt first, InputIt last, OutputIt d_first );
(C++20 前)
template< class InputIt, class OutputIt >

constexpr OutputIt adjacent_difference( InputIt first, InputIt last,

                                        OutputIt d_first );
(C++20 起)
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2 >

ForwardIt2 adjacent_difference( ExecutionPolicy&& policy,
                                ForwardIt1 first, ForwardIt1 last,

                                ForwardIt2 d_first );
(2) (C++17 起)
(3)
template< class InputIt, class OutputIt, class BinaryOperation >

OutputIt adjacent_difference( InputIt first, InputIt last,

                              OutputIt d_first, BinaryOperation op );
(C++20 前)
template< class InputIt, class OutputIt, class BinaryOperation >

constexpr OutputIt adjacent_difference( InputIt first, InputIt last,

                                        OutputIt d_first, BinaryOperation op );
(C++20 起)
template< class ExecutionPolicy,

          class ForwardIt1, class ForwardIt2, class BinaryOperation >
ForwardIt2 adjacent_difference( ExecutionPolicy&& policy,
                                ForwardIt1 first, ForwardIt1 last,

                                ForwardIt2 d_first, BinaryOperation op );
(4) (C++17 起)

计算 [firstlast) 范围中每对相邻元素的第二个和第一个的差,并将它们写入始于 d_first + 1 的范围。写入未经修改的 *first 副本到 *d_first。重载 (1,2) 使用 operator- 计算差值,重载 (3,4) 使用 op,两个重载都会将 std::move 应用到它们的左侧运算数 (C++11 起)

重载 (1)(在 [firstlast) 非空时)的等价操作,使用累加器 acc 存储要被减去的值:

std::iterator_traits<InputIt>::value_type acc = *first;
*d_first = acc;
 
std::iterator_traits<InputIt>::value_type val1 = *(first + 1);
*(d_first + 1) = val1 - std::move(acc);
// 对重载 (2) 是 *(d_first + 1) = op(val1, std::move(acc));
acc = std::move(val1);
 
std::iterator_traits<InputIt>::value_type val2 = *(first + 2);
*(d_first + 2) = val2 - std::move(acc);
acc = std::move(val2);
 
std::iterator_traits<InputIt>::value_type val3 = *(first + 3);
*(d_first + 3) = val3 - std::move(acc);
acc = std::move(val3);
// ...

重载 (3)(在 [firstlast) 非空时)的等价操作:

// 先执行
*d_first = *first;
 
// 在初始赋值后执行,不一定按顺序
*(d_first + 1) = *(first + 1) - *(first);
// 对重载 (4) 是 *(d_first + 1) = op(*(first + 1), *(first));
*(d_first + 2) = *(first + 2) - *(first + 1);
*(d_first + 3) = *(first + 3) - *(first + 2);
...

参数

first, last - 元素范围
d_first - 目标范围的起始
policy - 所用的执行策略。细节见执行策略
op - 被使用的二元函数对象。

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

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

签名中并不需要有 const &
类型 Type1Type2 必须使得 iterator_traits<InputIt>::value_type 类型的对象能隐式转换到这两个类型。 类型 Ret 必须使得 OutputIt 类型对象能被解引用并能被赋 Ret 类型值。 ​

类型要求
-
InputIt 必须符合老式输入迭代器 (LegacyInputIterator) 的要求。对于重载 (1,3),它的值类型必须能够从 *first 构造
-
OutputIt 必须符合老式输出迭代器 (LegacyOutputIterator) 的要求。acc(在上文定义)和 val - acc(重载 (1))或 op(val, acc)(重载 (3) (C++20 前)val - std::move(acc)(重载 (1))或 op(val, std::move(acc))(重载 (3) (C++20 起) 结果都必须可写入 OutputIt
-
ForwardIt1, ForwardIt2 必须符合老式向前迭代器 (LegacyForwardIterator) 的要求。*first 的结果和 *first - *first(重载 (2))或 op(*first, *first)(重载 (4))的结果必须可可写入 ForwardIt2

返回值

指向最后被写入元素后一位置的迭代器,或者在 [firstlast) 为空时返回 d_first

复杂度

给定 Nstd::distance(first, last) - 1

1,2) 应用 Noperator-
3,4) 应用 N 次二元函数 op

异常

拥有名为 ExecutionPolicy 的模板形参的重载按下列方式报告错误:

  • 如果作为算法一部分调用的函数的执行抛出异常,且 ExecutionPolicy标准策略之一,那么调用 std::terminate。对于任何其他 ExecutionPolicy,行为由实现定义。
  • 如果算法无法分配内存,那么抛出 std::bad_alloc

可能的实现

版本一
template<class InputIt, class OutputIt>
constexpr // C++20 起
OutputIt adjacent_difference(InputIt first, InputIt last, OutputIt d_first)
{
    if (first == last)
        return d_first;
 
    typedef typename std::iterator_traits<InputIt>::value_type value_t;
    value_t acc = *first;
    *d_first = acc;
 
    while (++first != last)
    {
        value_t val = *first;
        *++d_first = val - std::move(acc); // C++11 起有 std::move
        acc = std::move(val);
    }
 
    return ++d_first;
}
版本三
template<class InputIt, class OutputIt, class BinaryOperation>
constexpr // C++20 起
OutputIt adjacent_difference(InputIt first, InputIt last, 
                             OutputIt d_first, BinaryOperation op)
{
    if (first == last)
        return d_first;
 
    typedef typename std::iterator_traits<InputIt>::value_type value_t;
    value_t acc = *first;
    *d_first = acc;
 
    while (++first != last)
    {
        value_t val = *first;
        *++d_first = op(val, std::move(acc)); // C++11 起有 std::move
        acc = std::move(val);
    }
 
    return ++d_first;
}

注解

acc 通过 LWG 问题 539 的解决方案引入。使用 acc 而不是直接将结果相减的原因是后者的语义在以下类型不匹配时难以理解:

  • InputIt 的值类型
  • OutputIt 的可写入类型
  • operator-op 的形参类型
  • operator-op 的返回类型

acc 用来作为缓存遍历过的值的中间对象:

  • 它的类型是 InputIt 的值类型
  • 写入 d_first 的值(即 operator+op 的返回值)会赋给它
  • 它的值会传递给 operator+op
char i_array[4] = {100, 100, 100, 100};
int  o_array[4];
// OK:在需要时进行转换
// 1. 创建 char 类型的 acc(值类型)
// 2. 将 acc 赋给 o_array 的首个元素
// 3. 将 char 实参用于 long 乘法(char -> long)
// 4. 将 long 积赋到 o_array 中(long -> int)
// 5. 将 i_array 的下个值赋给 acc
// 6. 回到第 3 步,处理输入序列的剩余元素
std::adjacent_difference(i_array, i_array + 4, o_array, std::multiplies<long>{});

示例

#include <numeric>
#include <vector>
#include <array>
#include <iostream>
#include <functional>
#include <iterator>
 
auto print = [](auto comment, auto const& sequence)
{
    std::cout << comment;
    for (const auto& n : sequence)
        std::cout << n << ' ';
    std::cout << '\n';
};
 
int main()
{
    // 默认实现——两个项之间的差
    std::vector v {4, 6, 9, 13, 18, 19, 19, 15, 10};
    print("一开始,v = ", v);
    std::adjacent_difference(v.begin(), v.end(), v.begin());
    print("修改后,v = ", v);
 
    // 斐波那契
    std::array<int, 10> a {1};
    adjacent_difference(begin(a), std::prev(end(a)), std::next(begin(a)), std::plus<>{});
    print("斐波那契,a = ", a);
}

输出:

一开始,v = 4 6 9 13 18 19 19 15 10 
修改后,v = 4 2 3 4 5 1 0 -4 -5 
斐波那契,a = 1 1 2 3 5 8 13 21 34 55

缺陷报告

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

缺陷报告 应用于 出版时的行为 正确行为
LWG 242 C++98 op 不能有任何副作用 它不能修改涉及到的范围
LWG 539 C++98 缺失了需要保证对结果的求值和赋值合法的条件要求 已补充
LWG 2055
(P0616R0)
C++11 acc 在累加时不会被移动 它会被移动
LWG 3058 C++17 对于重载 (2,4),每次调用 operator-op 都会
创建临时对象存储结果,然后将该对象赋到输出范围中
直接将结果赋到输出范围中

参阅

计算范围内元素的部分和
(函数模板)
对一个范围内的元素求和
(函数模板)