How to insert new N elements at the beginning of forward_list in C++

1 Answer

0 votes
#include <iostream>  
#include <forward_list> 

using std::forward_list;
using std::cout;

void printList(const forward_list<int>& flist)
{
	for (auto elem : flist) {
		cout << elem << ' ';
	}
	cout << std::endl;
}

int main()
{
	forward_list<int> flist = { 1, 2, 3, 4, 5 };

	flist.insert_after(flist.before_begin(), { 888, 777, 999 });

	printList(flist);

	return 0;
}

/*
run:

888 777 999 1 2 3 4 5

*/

 



answered Jan 7, 2018 by avibootz

Related questions

2 answers 297 views
1 answer 258 views
1 answer 160 views
1 answer 188 views
1 answer 190 views
...