#include
#include
//typedef int SElemType;
//typedef int Status;
//typedef struct
//{
// int top[2],bot[2]; //栈顶和栈底指针
// SElemType V; //栈数组
// int m; //栈最大可容纳元素个数
//}DblStack;
//
//Status InitStack1(DblStack S,int m)
//{
// S.V = (SElemType)malloc(m*sizeof(SElemType));
// S.bot[0] = S.top[0]=0;
// S.bot[1] = S.top[1]=m-1;
// return 1;
//}
//
//Status IsEmpty(DblStack S,int i)
//{
// if(S.bot[i]==S.top[i])
// return 0;
// else
// return 1;
//}
//
//Status IsFull(DblStack S,int m)
//{
// if( (S.top[2]-S.bot[2]) + (S.top[1]-S.bot[1]) == m )
// return 1;
// else
// return 0;
//}
//
//Status Push1(DblStack S,int e,int m)
//{
// if( (S.top[2]-S.bot[2]) + (S.top[1]-S.bot[1]) == m )
// return -1;
// S.V[S.top[1]] = e;
// S.top[1]–;
//}
//
//Status Push0(DblStack S,int e,int m)
//{
// if( (S.top[2]-S.bot[2]) + (S.top[1]-S.bot[1]) == m )
// return -1;
// S.V[S.top[0]] = e;
// S.top[0]++;
//}
//
//void show(DblStack S,int m)
//{
// for(int i=0;i
//}
int main()
{
//DblStack S;
//InitStack1(S,4);
Push0(S,1,4);
//show(S,4);
//char s[5];
//scanf(“%s”,s);
system("pause");
}