How to print all elements of a list in reverse order using C++

1 Answer

0 votes
#include <iostream>
#include <algorithm>
#include <list>

using std::list;
using std::cout;
using std::endl;

void print(int element)
{
	cout << element << ' ';
}

int main()
{
	list<int> lst{ 1, 3, 8, 23, 88, 12, 99, 7 };

	for_each(lst.rbegin(), lst.rend(), print);

	cout << endl;
}


/*
run:

7 99 12 88 23 8 3 1

*/

 



answered Jan 21, 2018 by avibootz

Related questions

1 answer 155 views
2 answers 268 views
2 answers 226 views
1 answer 114 views
1 answer 141 views
1 answer 192 views
1 answer 156 views
...