Let's say i have a lot of vectors :
vector<int> v1 = ...
vector<int> v2 = ...
...
vector<int> v1000 = ...
Is there a quicker way to populate a 2D vector with those 1D vectors than this :
vector<vector<int>> vGlobal ;
vGlobal.push_back(v1);
vGlobal.push_back(v2);
.......
VGlobal.push_back(v1000);
It will be faster to
vGlobal
(iffv1
tov1000
aren't needed anymore; if you still needv1
to be "intact" after the procedure do not usestd::move
)if you cannot alter the structure.
If you can alter the structure then I'd advise to use
std::vector<std::vector<int>>
to hold all 1000 instances in the first place and not go forv1
,v2
, ...,v1000
.