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






Swap elements in first five elements of an array with elements in last five elements

 
 

#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

 */        
  








Related examples in the same category

1.Illustrating the generic swap_ranges algorithm
2.Use swap_ranges to swap elements in one container with corresponding elements in another container
3.Use swap_ranges to mirror first three with last three elements