J
John
Thanks.
If I define the following structure,
typedef struct{
vector<int> v;
int ID;
double time;
}node;
What should be the size of the structure node?
If I insert elements into vector v, will the size of structure node increase?
John.
If I define the following structure,
typedef struct{
vector<int> v;
int ID;
double time;
}node;
What should be the size of the structure node?
If I insert elements into vector v, will the size of structure node increase?
John.