I have 2 vectors like so:
std::vector<unsigned char> v1;
std::vector<unsigned char> v2;
Each of them has some data of course.
I know that following is the way if I want to append v2 to v1. v1.insert(v1.end(), v2.begin(), v2.end());
Question:
How can I prepend v1 to v2 instead?
v2.insert(v2.begin(), v1.begin(), v1.end())
doesn't seem to work here?
I know that I might get suggestions of using std::deque
instead but the problem is that v2
is coming as a std::vector
out a legacy piece of code I cannot change. And it contains a huge amount of data which I do not want copy over to v2
by appending. So, I simply want to prepend v1
to v2
because v1
is extremely small compared to v2
Aucun commentaire:
Enregistrer un commentaire