B
Baby Lion
list<int> Curve;
vector<Curve> a;
a.reserve(10);
then how should I initialize the list in the vector before
a[0].push_back(123) ?
what about
list<int>Curve ;
vector<Curve *> a;
a.reserve(10);
vector<Curve> a;
a.reserve(10);
then how should I initialize the list in the vector before
a[0].push_back(123) ?
what about
list<int>Curve ;
vector<Curve *> a;
a.reserve(10);