list::splice
Usuwa elementy z listy argumentów i wstawia je do listy target.
void splice(
iterator _Where,
list<Type, Allocator>& _Right
);
void splice(
iterator _Where,
list<Type, Allocator>& _Right,
iterator _First
);
void splice(
iterator _Where,
list<Type, Allocator>& _Right,
iterator _First,
iterator _Last
);
Parametry
_Where
Pozycja na liście urządzeń docelowych, przed którą dodaje się elementy listy argumentów._Right
Lista argumentów jest wstawiane do listy docelowej._First
Pierwszy element w zakresie do wstawienia z listy argumentów._Last
Pierwszy element poza zakres ma zostać wstawiony z listy argumentów.
Uwagi
Pierwsza funkcja Członkowskie wstawia wszystkie elementy na liście argumentów przed elementu znajdującego się w _Where na liście.Usuwa również wszystkie elementy z listy argumentów.
Druga funkcja Członkowskie usuwa elementu wskazywanego przez _First listy argumentów i wstawia go przed element na liście wskazywanej przez _Where.
Trzecią funkcję Członkowskie Wstawia zakres wyznaczony przez [_First, _Last) z listy argumentów, zanim element na liście wskazywanej przez _Where.Usuwa również zakres wstawianych z listy argumentów.
We wszystkich przypadkach tylko Iteratory lub odwołania, które wskazują na spliced elementy stają się nieprawidłowe.
Przykład
// list_splice.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
using namespace std;
list <int> c1, c2, c3, c4;
list <int>::iterator c1_Iter, c2_Iter, w_Iter, f_Iter, l_Iter;
c1.push_back( 10 );
c1.push_back( 11 );
c2.push_back( 12 );
c2.push_back( 20 );
c2.push_back( 21 );
c3.push_back( 30 );
c3.push_back( 31 );
c4.push_back( 40 );
c4.push_back( 41 );
c4.push_back( 42 );
cout << "c1 =";
for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
cout << " " << *c1_Iter;
cout << endl;
cout << "c2 =";
for ( c2_Iter = c2.begin( ); c2_Iter != c2.end( ); c2_Iter++ )
cout << " " << *c2_Iter;
cout << endl;
w_Iter = c2.begin( );
w_Iter++;
c2.splice( w_Iter,c1 );
cout << "After splicing c1 into c2: c2 =";
for ( c2_Iter = c2.begin( ); c2_Iter != c2.end( ); c2_Iter++ )
cout << " " << *c2_Iter;
cout << endl;
f_Iter = c3.begin( );
c2.splice( w_Iter,c3, f_Iter );
cout << "After splicing the first element of c3 into c2: c2 =";
for ( c2_Iter = c2.begin( ); c2_Iter != c2.end( ); c2_Iter++ )
cout << " " << *c2_Iter;
cout << endl;
f_Iter = c4.begin( );
l_Iter = c4.end( );
l_Iter--;
c2.splice( w_Iter,c4, f_Iter, l_Iter );
cout << "After splicing a range of c4 into c2: c2 =";
for ( c2_Iter = c2.begin( ); c2_Iter != c2.end( ); c2_Iter++ )
cout << " " << *c2_Iter;
cout << endl;
}
Wymagania
Nagłówek: <list>
Obszar nazw: std