Status SPush(SqStack& s, ElemType x)
{
if (s.top == s.stacksize) //栈满
return ERROR;
s.data[s.top] = x;
s.top++;//1条或2条语句均可
return OK;
}
Status SPop(SqStack& s, int& e)
{
if (s.top == 0) //栈空
return ERROR;
s.top--; //S.top下移
e= s.data[s.top]; //把栈顶元素赋给参数e
return OK;
}