adjacent_difference
Vypočítá po sobě rozdíly mezi každého prvku a jeho předchůdce vstupní oblasti a Vypíše výsledek do cílové oblasti nebo vypočítá výsledek obecný postup, kde rozdíl operace nahrazuje binární operace, zadané.
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
);
Parametry
_First
Vstupní iterace adresování první prvek vstupní oblasti, jejíž prvky mají být differenced s jejich předchůdci odpovídajících nebo kde je provozována jiným dvojice hodnot zadána binární operace._Last
Vstupní iterace adresování poslední prvek vstupní oblasti, jejíž prvky mají být differenced s jejich předchůdci odpovídajících nebo kde je provozována jiným dvojice hodnot zadána binární operace._Result
Iterace výstup adresování první prvek cílové oblasti, kde je uložena řada rozdílů nebo výsledky zadané operace._Binary_op
Binární operace, která se v zobecněné operaci nahrazení operace odčítání rozdílové postupu.
Vrácená hodnota
Adresování konec rozsahu cílové výstupní iterace: _Result + ()_Last - _First).
Poznámky
Iterační _ výstupvýsledek být stejné iterační jako vstupní iterační _First, tak, aby adjacent_differences mohou být vypočteny na místě.
Pro posloupnost hodnot 1, 2, 3 vstupní oblasti první funkce šablony jsou uloženy po sobě partial_differences 1, 2 - 1 a3- 2, v cílové oblasti.
Pro posloupnost hodnot 1, 2, 3 vstupní oblasti druhá funkce šablony jsou uloženy po sobě partial_differences 1, 2 _Binary_op1, 3 _Binary_op2, v cílové oblasti.
Binární operace _Binary_op není nutný asociativní nebo komutativní, protože pořadí operací vztahuje zcela určen.
adjacent_differencemá dva související formuláře:
Některé formy kontrolované iterační předáte adjacent_difference, získat kontrolované iterační chování. Pokud předáte Nekontrolovaná iterace, získat nekontrolované chování.Další informace naleznete v tématu Zaškrtnuté iterátory.
Příklad
// 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;
}
Výsledek
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 ).
Požadavky
Záhlaví: <numeric>
Obor názvů: std