标签:style io os 使用 sp for strong on 代码
Stack 从名字中可以看得出来意思是栈,
栈的特点就是先进后出,FILO.
具体使用看下面的代码:
#include <iostream>
#include <stack>
using namespace std;
int main()
{
stack<int> sc;
for(int i = 0; i < 10l; ++i)
sc.push(i);
while( !sc.empty())
{
cout<<sc.top()<<" ";
sc.pop();
}
cout<<endl;
cin.get();
return 0;
}
标签:style io os 使用 sp for strong on 代码
原文地址:http://blog.csdn.net/u012965373/article/details/41782029