Tagged Questions
0
votes
3answers
887 views
C++ as in Java?: vector of vectors with *variable* length of int
My model would best use some
v int[30][i][N_i];
structure that is 30 vectors of tuples of ints, where
v[0] is a dummy,
v[1] are plain ints (N_0 of them),
v[2] are pairs of int (N_1 pairs)
...
...