C++之STL

stack

含义

只能先进后出

定义

stack<存储数据的类型> 栈名
//eg
stack sta;

操作

sta.pop()//弹出
sta.top()//读取栈顶
sta.push()//压入
sta.empty()//判断是否为空