Nested stl lists
I want to make an array of lists that contain a list.
For example something like this
list<list<int>> L[5];
Obviously this code doesn't work in all compilers.
Which is the best way to create this kind of struct cause i think i am t开发者_JAVA百科hinking wrong here.
This code should work and it's a possible approach to you task.
One guess is that >>
should have a space in between for some compilers.
Like this:
list<list<int> > L[5];
精彩评论