0
struct nodepoint
    {
        bool State_ON;
        double xxx;
        double yyy;
        list<float> P;


       // node *next;
    }node [numMS];

list <nodepoint> eventlist;

==========================

如何访问上面事件列表中的 P 列表列表?

例如,如果我想打印 P 列表中的所有元素。

谢谢你

4

2 回答 2

3

std::list访问项目,您可以使用迭代器。例如:

C++11:

auto itr = eventlist.begin();

for (auto x : itr->P)
    cout << x << endl;

在 C++11 之前:

list<nodepoint>::iterator itr = eventlist.begin();

for (list<float>::iterator itr2 = itr->P.begin(); itr2 != itr->P.end(); itr2++)
   cout << *itr2 << endl;

我假设列表不为空。

于 2013-11-05T21:20:51.123 回答
0

例如

eventlist.back().P.back();

或者

eventlist.back().P.front();

或者

eventlist.front().P.front();

或者

eventlist.front().P.back();

或者

for ( nodepoint &nd : eventlist )
{
   for ( float x : nd.P ) std::cout << x << ' ';
   std::cout << std::endl;
}

或者您可以使用迭代器来访问列表中间的元素。

于 2013-11-05T21:26:38.693 回答