Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,166 questions

40,722 answers

573 users

How to remove duplicate elements from a forward_list in C++

Freaking Awesome WordPress Hosting
64 views
asked Jan 8, 2018 by avibootz
edited Jan 8, 2018 by avibootz

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, 1, 2, 3, 4, 3, 4, 4, 5, 5, 5 };

	flist.sort();
	flist.unique();

	printList(flist);

	return 0;
}

/*
run:

1 2 3 4 5

*/

 





answered Jan 8, 2018 by avibootz

Related questions

1 answer 59 views
1 answer 82 views
2 answers 99 views
1 answer 109 views
...