顺序栈
顺序栈
结构体定义
1 |
|
初始化
1 | Status InitStack(SqStack &s) { |
判空
1 | Status IsEmpty(SqStack s) { |
判满
1 | Status IsFull(SqStack s) { |
入栈
1 | Status Push(SqStack &s, SElemType e) { |
出栈
1 | Status Pop(SqStack &s, SElemType &e) { |
获取栈顶元素
1 | Status GetTop(SqStack s, SElemType &e) { |
置空
1 | Status SetEmpty(SqStack &s) { |
销毁
1 | Status DestoryStack(SqStack &s) { |
遍历
1 | Status visit(SElemType e) { |
评论