C++ 使用adjacent_difference

Posted NearXDU

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 使用adjacent_difference相关的知识,希望对你有一定的参考价值。

用来计算容器相邻元素的关系,除了相邻元素之差,或自定义相邻元素操作:

#include <numeric>
#include <vector>
#include <iostream>
#include <functional>

int main()

    // Default implementation - the difference b/w two adjacent items

    std::vector<int> v2, 4, 6, 8, 10, 12, 14, 16, 18, 20;
    std::adjacent_difference(v.begin(), v.end(), v.begin());

    for (auto n : v) 
        std::cout << n << ' ';
    
    std::cout << '\\n';

    // Fibonacci 
    // Notice, next item on the list is the result of the current iteration

    v = std::vector<int>(10);
    v[0] = 1;

    std::adjacent_difference(v.begin(), v.end() - 1, v.begin() + 1, std::plus<int>());

    for (auto n : v) 
        std::cout << n << ' ';
    
    std::cout << '\\n';

假设给一个vector<T>path,如何打印出:
a->b->c
这样的效果,如果使用迭代的方式,就需要进行if判断在最后的一个元素不输出->,看起来更简单的办法是使用adjacent_difference

template <class T>
void Print(vector<T> a)
std::adjacent_difference(a.begin(),a.end(),
    ostream_iterator<T>(std::cout),
        [](T x, T y)
            
                cout<<"->";
                return x;);

参考:
http://en.cppreference.com/w/cpp/algorithm/adjacent_difference

以上是关于C++ 使用adjacent_difference的主要内容,如果未能解决你的问题,请参考以下文章

adjacent_difference

C++ 程序员应该使用哪些 C++ 习语? [关闭]

在 C++ 中使用 C# 接口或在 C# 中使用 C++ 接口

C++ 如何在 C++ 中使用 dlopen()?

如何在 Visual C++ 2010 中使用 C++ 库 [重复]

我们啥时候需要在纯 C++ 程序中使用结构?纯 C++ 程序是不是需要结构? [复制]