//------------------返回栈元素个数------------------ int StackLength(SqStack S){ if(S.base==S.top){ return 0; } return S.top-S.base; }