本关任务:输入一个整数序列a1,a2,a3...,an。当ai不等于-1时将ai进栈;当ai=-1时,输出栈顶元素并将其出栈。
#include<iostream>
using namespace std;
#define MAXSIZE 100
#define OK 1
#define ERROR 0
#define OVERFLOW -2
typedef struct
{
int *base;
int *top;
int stacksize;
}SqStack;
int InitSqStack(SqStack &S)
{//栈的初始化
S.base=new int[MAXSIZE];
if(!S.base) return OVERFLOW;
S.top=S.base;
S.stacksize=MAXSIZE;
return OK;
}
int Push(SqStack &S,int e)
{//入栈
if(S.top-S.base==S.stacksize) //栈满
return ERROR;
*S.top=e;
S.top++;
return OK;
}
int Pop(SqStack &S)
{//出栈
if(S.top==S.base) //栈空
return ERROR;
S.top--;
return OK;
}
int GetTop(SqStack S)
{//取栈顶元素
if(S.top==S.base) //栈空
return ERROR;
return *(S.top-1);
}
void InOutS(SqStack &S,int a[],int n)
{//入栈和出栈的基本操作
/**************begin************/
/**************end************/
}
int main()
{
int n;
while(cin>>n)
{
if(n==0) break;
SqStack S;
InitSqStack(S);
int a[n];
for(int i=0;i<n;i++) cin>>a[i]; //整数序列
InOutS(S,a,n);
}
return 0;
}
using namespace std;
#define MAXSIZE 100
#define OK 1
#define ERROR 0
#define OVERFLOW -2
typedef struct
{
int *ba
int *top;
int stacksize;
}SqStack;
int InitSqStack(SqStack &S)
{//栈的初始化
S.ba
if(!S.ba
S.top=S.ba
S.stacksize=MAXSIZE;
return OK;
}
int Push(SqStack &S,int e)
{//入栈
if(S.top-S.ba
return ERROR;
*S.top=e;
S.top++;
return OK;
}
int Pop(SqStack &S)
{//出栈
if(S.top==S.ba
return ERROR;
S.top--;
return OK;
}
int GetTop(SqStack S)
{//取栈顶元素
if(S.top==S.ba
return ERROR;
return *(S.top-1);
}
void InOutS(SqStack &S,int a[],int n)
{//入栈和出栈的基本操作
/**************begin************/
/**************end************/
}
int main()
{
int n;
while(cin>>n)
{
if(n==0) break;
SqStack S;
InitSqStack(S);
int a[n];
for(int i=0;i<n;i++) cin>>a[i]; //整数序列
InOutS(S,a,n);
}
return 0;
}