vote up 9 vote down star
6

Is there a good way in C++ to implement (or fake) a type for a generic vector of vectors?

Ignore the issue of when a vector of vectors is a good idea (unless there's something equivalent which is always better). Assume that it does accurately model the problem, and that a matrix does not accurately model the problem. Assume also that templated functions taking these things as parameters do need to manipulate the structure (e.g. calling push_back), so they can't just take a generic type supporting [][].

What I want to do is:

template<typename T>
typedef vector< vector<T> > vecvec;

vecvec<int> intSequences;
vecvec<string> stringSequences;

but of course that's not possible, since typedef can't be templated.

#define vecvec(T) vector< vector<T> >

is close, and would save duplicating the type across every templated function which operates on vecvecs, but would not be popular with most C++ programmers.

flag

3 Answers

vote up 18 vote down check

You want to have template-typedefs. That is not yet supported in the current C++. A workaround is to do

template<typename T>
struct vecvec {
     typedef std::vector< std::vector<T> > type;
};

int main() {
    vecvec<int>::type intSequences;
    vecvec<std::string>::type stringSequences;
}

In the next C++ (called c++0x, c++1x due to 2010), this would be possible:

template<typename T>
using vecvec = std::vector< std::vector<T> >;
link|flag
I think they've also fixed the need for spaces in >> – Dave Hillier Nov 17 '08 at 22:56
indeed, they have :) – Johannes Schaub - litb Nov 18 '08 at 0:54
vote up 0 vote down

I use multi_array which is implemented in the boost library. http://www.boost.org/doc/libs/1_37_0/libs/multi_array/doc/user.html

HTH

link|flag
vote up 4 vote down

You can simply create a new template :

#include <string>
#include <vector>

template<typename T>
struct vecvec : public std::vector< std::vector<T> > {};

int main() 
{
    vecvec<int> intSequences;
    vecvec<std::string> stringSequences;
}

If you do that you have to remember that destructor of vector is not virtual and not to do something like this :

void test()
{
    std::vector< std::vector<int> >* pvv = new vecvec<int>;
    delete pvv;
}
link|flag
You'll run into losing all the handy constructors of vector<T>. You need to define them, just passing the arguments to the parent. A possibility, but not a lean-and-mean solution. – xtofl Nov 19 '08 at 19:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.