1. 程式人生 > >list(連結串列)常用成員(順序容器)

list(連結串列)常用成員(順序容器)

list<int> the_list; for( int i = 0; i < 10; i++ ) the_list.push_back( i ); while( !the_list.empty() ) { cout << the_list.front() << endl; the_list.pop_front(); }