Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想制作一个包含列表的列表数组。
例如像这样
list<list<int>> L[5];
显然,此代码不适用于所有编译器。
这是创建这种结构的最佳方法,因为我认为我在这里想错了。
此代码应该可以工作,并且它是您完成任务的一种可能方法。
一种猜测是>>某些编译器之间应该有一个空格。
>>
像这样:
list<list<int> > L[5];