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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,994 questions

51,939 answers

573 users

How to insert elements to a set with insert_iterator in C++

1 Answer

0 votes
#include <iostream>
#include <set>
#include <iterator>

using std::set;
using std::cout;
using std::endl;

void print(const set<int>& st)
{
	for (auto element : st) {
		cout << element << ' ';
	}
	cout << endl;
}

int main()
{
	set<int> st;

	std::insert_iterator<set<int> > itr(st, st.begin());

	*itr = 1;
	itr++;
	*itr = 2;
	itr++;
	*itr = 3;
	itr++;
	*itr = 4;

	print(st);
}


/*
run:

1 2 3 4

*/

 



answered Jan 23, 2018 by avibootz
edited Jan 24, 2018 by avibootz

Related questions

1 answer 151 views
1 answer 155 views
1 answer 181 views
1 answer 49 views
1 answer 132 views
132 views asked Apr 8, 2020 by avibootz
1 answer 129 views
129 views asked Apr 23, 2018 by avibootz
...