hello,
my problem is that i have a code in matlab and i want to rewrite it in cpp
in the matlab code i have dynamic arrays
with that i mean that too many times rows or columns of the table are deleted or a new one is inserted
but in cpp we know that the dimensions of an array are constant
what do you suggest me to use??
vector or lists or do it with array??

