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

How do I concatenate two STL Vectors?

share|improve this question

4 Answers

vector1.insert( vector1.end(), vector2.begin(), vector2.end() );
share|improve this answer
12  
I'd only add code to first get the number of elements each vector holds, and set vector1 to be the one holding the greatest. Should you do otherwise you're doing a lot of unnecessary copying. – Joe Pineda Oct 14 '08 at 16:11
5  
I have a question. Will this work if vector1 and vector2 are the same vectors? – Alexander Rafferty Jul 17 '11 at 9:36
1  
If you have concatenating several vectors to one, is it helpful to call reserve on the destination vector first? – Faheem Mitha Feb 4 '12 at 23:07
3  
@AlexanderRafferty: Only if vector1.capacity() >= 2 * vector1.size(). Which is atypical unless you've called std::vector::reserve(). Otherwise the vector will reallocate, invalidating the iterators passed as parameters 2 and 3. – Drew Dormann Jun 21 '12 at 20:30

Or you could use:

std::copy(source.begin(), source.end(), std::back_inserter(destination));

This pattern is useful if the two vectors don't contain exactly the same type of thing, because you can use something instead of std::back_inserter to convert from one type to the other.

share|improve this answer
2  
the copy method is a not such a good way. It will call push_back multiple time which means that if a lot of elements have to be inserted this could mean multiple reallocations. it is better to use insert as the vector implementation could do some optimization to avoid reallocations. it could reserve memory before starting copying – Yogesh Arora Mar 22 '10 at 13:16
2  
@Yogesh: granted, but there's nothing stopping you calling reserve first. The reason std::copy is sometimes useful is if you want to use something other than back_inserter. – Roger Lipscombe Mar 22 '10 at 18:36
totally agree with that. – Yogesh Arora Mar 22 '10 at 18:55

I would use the insert function Something like:

vector<int> a, b;
//fill with data
b.insert(b.end(), a.begin(), a.end());
share|improve this answer
Change a.front() to a.begin(). – smink Oct 14 '08 at 15:52
2  
thanks, this works. note to stl: you are too verbose! – Jon Galloway Oct 14 '08 at 15:52
std::vector<int> first;
std::vector<int> second;

first.insert(first.end(), second.begin(), second.end());
share|improve this answer

Your Answer

 
discard

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