Total members 11890 |It is currently Fri Apr 19, 2024 12:55 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





List swapping elements using C++.
cpp code
#include <iostream>
using std::cout;
using std::endl;

#include <list> // list class-template definition
#include <algorithm> // copy algorithm
#include <iterator> // ostream_iterator

int main()
{
int array[ 4 ] = { 2, 6, 4, 8 };
std::list< int > values; // create list of ints
std::list< int > otherValues; // create list of ints
std::ostream_iterator< int > output( cout, " " );

// insert items in values
values.push_front( 1 );
values.push_front( 3 );
values.push_back( 4 );
values.push_back( 2 );

cout << "values contains: ";
std::copy( values.begin(), values.end(), output );

otherValues.insert( otherValues.begin(), array, array + 4 );
cout << "\n\notherValues contains: ";
std::copy( otherValues.begin(), otherValues.end(), output );

values.swap( otherValues );

cout << "\n\nvalues contains: ";
std::copy( values.begin(), values.end(), output );

cout << "\n\notherValues contains: ";
std::copy( otherValues.begin(), otherValues.end(), output );

cout << endl;
return 0;
}

/*
values contains: 3 1 4 2

otherValues contains: 2 6 4 8

values contains: 2 6 4 8

otherValues contains: 3 1 4 2

*/




_________________
Please recommend my post if you found it helpful


Author:
Beginner
User avatar Posts: 95
Have thanks: 2 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : list swap in C++
 Swap Using Pointers     -  
 swap two numbers c++ program     -  
 SWAP images using JQuery just by using the src attribute img     -  
 List interface     -  
 Implementation of List     -  
 List all database in php     -  
 List C++ implementation     -  
 Sort a list     -  
 list and explode     -  
 iterator on list     -  



Topic Tags

C++ Data Structures






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com