Total members 11894 |It is currently Thu Nov 21, 2024 1:42 pm Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Reverse a list using C++.
cpp code
#include <iostream>
#include <cassert>
#include <list>
#include <string>
#include <algorithm> // for reverse
using namespace std;

int main()
{
string s("asdfg");


list<char> list1(s.begin(), s.end());
list<char>::iterator i;

for (i = list1.begin(); i != list1.end(); ++i)
cout << *i;


reverse(list1.begin(), list1.end());

for (i = list1.begin(); i != list1.end(); ++i)
cout << *i;


return 0;
}
/*
asdfggfdsa
*/




_________________
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 : reverse list
 Java Reverse Engineering Tutorial.pdf     -  
 Return an array with elements in reverse order     -  
 reverse ,length of strings as number of bytes     -  
 recursive string reversal- reverse string     -  
 List all database in php     -  
 List C++ implementation     -  
 Sort a list     -  
 list and explode     -  
 display list     -  
 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