Swap elements in first five elements of an array with elements in last five elements : swap_ranges « STL Algorithms Modifying sequence operations « C++ Tutorial






#include <iostream>
using std::cout;
using std::endl;

#include <algorithm>
#include <iterator> 

int main()
{
   int a[ 10 ] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
   std::ostream_iterator< int > output( cout, " " );

   cout << "Array a contains:\n   ";
   std::copy( a, a + 10, output );

   std::swap_ranges( a, a + 5, a + 5 );

   std::copy( a, a + 10, output );

   cout << endl;
   return 0;
}
Array a contains:
   1 2 3 4 5 6 7 8 9 10 6 7 8 9 10 1 2 3 4 5








24.22.swap_ranges
24.22.1.Illustrating the generic swap_ranges algorithm
24.22.2.Swap elements in first five elements of an array with elements in last five elements
24.22.3.Use swap_ranges to swap elements in one container with corresponding elements in another container
24.22.4.Use swap_ranges to mirror first three with last three elements