关于list 的问题
what is the output of this code?Note:<list> is already included.
list<int>x({1,2,3});
x.pop_front();
cout<<x.front();
x.pop_back();
cout<<x.back()<<x.size();
2017-05-08 16:02
2017-05-09 09:27
2017-05-09 15:36