开发者

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];
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜