adjacent_difference

计算每个元素及其前置范围的输入和输出之间的连续的差异结果为目标范围或计算差异操作在代码中将一个通用程序,指定的二元运算的结果。

template<class InputIterator, class OutIterator>
   OutputIterator adjacent_difference(
      InputIterator _First, 
      InputIterator _Last,
      OutputIterator _Result 
   );

template<class InputIterator, class OutIterator, class BinaryOperation>
   OutputIterator adjacent_difference(
      InputIterator _First, 
      InputIterator _Last,
      OutputIterator _Result, 
      BinaryOperation _Binary_op
   );

参数

  • _First
    解决输入的迭代器元素将differenced与其各自的前置的输入范围或的第一个元素值对将由另一个指定的二元运算操作。

  • _Last
    解决输入的迭代器元素将differenced与其各自的前置的输入范围或的最后一个元素值对将由另一个指定的二元运算操作。

  • _Result
    解决输出的迭代器第一个元素目标范围要存储的位置差异或指定的操作的结果序列。

  • _Binary_op
    将应用于替换减法运算并为该词的程序的通用操作的二元运算。

返回值

解决输出的迭代器目标范围的末尾: _Result + (_Last -_First).

备注

输出迭代器_Result允许为迭代器和输入迭代器 *_First相同,*因此,adjacent_differences可以就地计算。

a1值序列,a2a3,在输入范围,第一个模板函数在目标范围存储连续的 partial_differencea1a2- a1,a3 – a2,。

a1值序列,a2a3,在输入范围,第二个模板函数在目标范围存储连续的 partial_differencea1a2_Binary_opa1a3_Binary_opa2,。

不需要该二进制操作 _Binary_op 是或关联的或可交换,因为操作顺序应用完全指定。

adjacent_difference 有两个相关的窗体:

如果通过经过检查的迭代器某个 adjacent_difference的窗体,则得到检查的迭代器行为。 如果将未检查的迭代器,可以获得未经检查的行为。 有关更多信息,请参见 经过检查的迭代器

示例

// numeric_adj_diff.cpp
// compile with: /EHsc
#include <vector>
#include <list>
#include <numeric>
#include <functional>
#include <iostream>

int main( ) 
{
   using namespace std;
   
   vector<int> V1( 10 ), V2( 10 );
   vector<int>::iterator VIter1, VIter2, VIterend, VIterend2;

   list <int> L1;
   list <int>::iterator LIter1, LIterend, LIterend2;

   int t;
   for ( t = 1 ; t <= 10 ; t++ )
   {
      L1.push_back( t * t );
   }

   cout << "The input list L1 is:\n ( " ;
   for ( LIter1 = L1.begin( ) ; LIter1 != L1.end( ) ; LIter1++ )
      cout << *LIter1 << " ";
   cout << ")." << endl;

   // The first member function for the adjacent_differences of
   // elements in a list output to a vector
   VIterend = adjacent_difference ( L1.begin ( ) , L1.end ( ) , 
      V1.begin ( ) );
   
   cout << "Output vector containing adjacent_differences is:\n ( " ;
   for ( VIter1 = V1.begin( ) ; VIter1 != VIterend ; VIter1++ )
      cout << *VIter1 << " ";
   cout << ")." << endl;

   // The second member function used to compute
   // the adjacent products of the elements in a list
   VIterend2 = adjacent_difference ( L1.begin ( ) , L1.end ( ) , V2.begin ( ) , 
      multiplies<int>( ) );
   
   cout << "The output vector with the adjacent products is:\n ( " ;
   for ( VIter2 = V2.begin( ) ; VIter2 != VIterend2 ; VIter2++ )
      cout << *VIter2 << " ";
   cout << ")." << endl;

   // Computation of adjacent_differences in place
   LIterend2 = adjacent_difference ( L1.begin ( ) , L1.end ( ) , L1.begin ( ) );
   cout << "In place output adjacent_differences in list L1 is:\n ( " ;
   for ( LIter1 = L1.begin( ) ; LIter1 != LIterend2 ; LIter1++ )
      cout << *LIter1 << " ";
   cout << ")." << endl;
}

Output

The input list L1 is:
 ( 1 4 9 16 25 36 49 64 81 100 ).
Output vector containing adjacent_differences is:
 ( 1 3 5 7 9 11 13 15 17 19 ).
The output vector with the adjacent products is:
 ( 1 4 36 144 400 900 1764 3136 5184 8100 ).
In place output adjacent_differences in list L1 is:
 ( 1 3 5 7 9 11 13 15 17 19 ).

要求

标头: <numeric>

命名空间: std

请参见

参考

adjacent_difference 和 vector::push_back

标准模板库