Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to know if there is any std library or boost tool to easily merge the contents of multiple sets into a single one.

In my case I have some sets of ints which I would like to merge.

share|improve this question

3 Answers

up vote 14 down vote accepted

You can do something like:

std::set<int> s1;
std::set<int> s2;
// fill your sets
s1.insert(s2.begin(), s2.end());
share|improve this answer

Looks like you are asking for set_union.

share|improve this answer
In case you need not to change the original structures, this solution is the best. – freitass Apr 16 at 12:40

look what std::merge can do for you

cplusplus.com/reference/algorithm/merge

share|improve this answer
If that compiles it will wreck your sets. std::merge is a sorting algorithm. – Mooing Duck Aug 17 '11 at 21:19
1  
@MooingDuck I don't see the problem with using merge. Merge does the same thing as union but doesn't do anything special with duplicates like union does. And inserting a duplicate is handled by the set itself. – gsingh2011 Oct 30 '12 at 2:53
@gsingh2011 I suppose it could work as long as the output container had enough space (and ergo wasn't also a set), but it's already so easy to do with the set itself... – Mooing Duck Oct 30 '12 at 3:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.