解题思路:栈的应用
注意事项:
参考代码:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define maxsize 100
#define stype int
typedef struct {
stype *base;
stype *top;
int size;}data; //用结构体构造栈的数据类型
int initstack(data *s)
{
s->base=(stype *)malloc(sizeof(stype)*maxsize);
if(!s->base)
{
exit(0);
return 0;
}
else
{
s->top=s->base;
s->size=maxsize;
}
}
int getstack(data *s,stype *x)
{
if(s->base==s->top)
return 0;
else
{
*x=*(s->top-1);
return 1;
}
}
int pop(data *s,stype *x)
{
if(s->base==s->top)
return 0;
else
{
*x=*--s->top;
return 1;
}
}
int push(data *s,stype x)
{
if(s->top-s->base==maxsize)
return 0;
else
{
*s->top++=x;
return 1;
}
}
int main()
{
int n,k,m,x,flag,i;
char ch[5];
data s;
initstack(&s);
while(scanf("%d",&n),n)
{
k=0;
while(k<n)
{
scanf("%s",ch);
if(strcmp(ch,"P")==0)
{
scanf("%d",&m);
push(&s,m);
}
else if(strcmp(ch,"O")==0)
{
pop(&s,&x);
}
else if(strcmp(ch,"A")==0)
{
flag=getstack(&s,&x);
if(flag==0)
printf("E\n");
else
printf("%d\n",x);
}
k++;
}
while(s.base!=s.top)
pop(&s,&x);
putchar('\n');
}
return 0;
}
0.0分
1 人评分
C二级辅导-计负均正 (C语言代码)浏览:607 |
C语言训练-求矩阵的两对角线上的元素之和 (C语言代码)浏览:3472 |
C语言训练-求矩阵的两对角线上的元素之和 (C语言代码)浏览:619 |
printf基础练习2 (有点不明白)浏览:887 |
C语言训练-求1+2!+3!+...+N!的和 (C语言代码)浏览:822 |
WU-陶陶摘苹果2 (C++代码)浏览:1018 |
WU-printf基础练习2 (C++代码)浏览:2061 |
Cylinder (C语言描述,蓝桥杯)浏览:1279 |
关于float,double变量的几点说明浏览:1926 |
数组与指针的问题浏览:760 |