(1) stack::empty
bool empty ( ) const;
判断是否为空。
return Value : true if the container size is 0, false otherwise;
(2) stack::pop
void pop ( );
在栈的顶部移除元素。
(3) stack::push
void push ( const T& x );
在栈顶添加元素
(4) stack::size
计算栈对象元素个数;
(5) stack::top
返回栈顶元素