#include <stack>
using std::stack ;
变量定义:
stack<T> stackName ;
成员函数:
成员函数 | 功能 |
bool empty() | 判断栈是否为空, 如果为空返回为false |
void pop() | 删除栈顶元素,出栈 |
void push(const T &val ) | 将元素进栈 |
T &top() | 查看当前的栈顶元素 |
unsin long size() | 返回栈中的元素数目 |
本文共 265 字,大约阅读时间需要 1 分钟。
#include <stack>
using std::stack ;
变量定义:
stack<T> stackName ;
成员函数:
成员函数 | 功能 |
bool empty() | 判断栈是否为空, 如果为空返回为false |
void pop() | 删除栈顶元素,出栈 |
void push(const T &val ) | 将元素进栈 |
T &top() | 查看当前的栈顶元素 |
unsin long size() | 返回栈中的元素数目 |
转载于:https://www.cnblogs.com/greentomlee/p/5320628.html