vote up 10 vote down star
1

how to concat two stl vectors?

flag

4 Answers

vote up 14 vote down
vector1.insert( vector1.end(), vector2.begin(), vector2.end() );
link|flag
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
vote up 5 vote down

I would use the insert function Something like:

vector<int> a, b;
//fill with data
b.insert(b.end(), a.begin(), a.end());
link|flag
Change a.front() to a.begin(). – smink Oct 14 '08 at 15:52
thanks, this works. note to stl: you are too verbose! – Jon Galloway Oct 14 '08 at 15:52
vote up 5 vote down

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.

link|flag
vote up 2 vote down
std::vector<int> first;
std::vector<int> second;

first.insert(first.end(), second.begin(), second.end());
link|flag

Your Answer

Get an OpenID
or

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