0
votes
2answers
116 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 …
1
vote
4answers
155 views
Difference between variable-length argument and function overloading
This C++ question seems to be pretty basic and general but still I want someone to answer.
1) What is the difference between a function with variable-length argument and an overlo …
4
votes
4answers
249 views
Matrix of unknown length in MATLAB?
I'm trying to set up a zero matrix of variable length with two columns into which I can output the results of a while loop (with the intention of using it to store the step data fr …
1
vote
4answers
221 views
Variable length template arguments list?
I remember seing something like this being done:
template <ListOfTypenames>
class X : public ListOfTypenames {};
that is, X inherits from a variable length list of typenam …
4
votes
10answers
927 views
Variable Sized Struct C++
Is this the best way to make a variable sized struct in C++? I don't want to use vector because the length doesn't change after initialization.
struct Packet
{
unsigned int by …
1
vote
5answers
483 views
What is best way to implement variable length arrays?
I want to store a large result set from database in memory. Every record has variable length and access time must be as fast as arrays. What is the best way to implement this? I wa …
