解题思路:简陋代码但还算简单,可供食用参考。
注意事项:①清理缓冲区换行符。
②题目要求:一次开始时堆栈为空。
参考代码:
#include
#include
#include
#include
typedef struct ware_house{
int top;
int _array[100];
}ware_;
int push_ware(ware_*ware1){
if(ware1->top-100==-1){
return false;
}
ware1->top+=1;
scanf("%d",&ware1->_array[ware1->top]);
return 0;
}
int pop_ware(ware_*ware1){
if(ware1->top==-1)
return false;
ware1->top-=1;
return 0;
}
int read_ware(ware_ *ware1){
if(ware1->top==-1){
printf("E\n");
}else{
printf("%d\n",ware1->_array[ware1->top]);
}
return 0;
}
int main()
{ ware_ ware1;
char ch;
int n;
ware1.top=-1;
while(scanf("%d",&n)&&n!=0){
int count=1;
while(count<=n){
getchar();
scanf("%c",&ch);
switch(ch){
case 'P':
push_ware(&ware1);
break;
case 'O':
pop_ware(&ware1);
break;
case 'A':
read_ware(&ware1);
break;
default:
break;
}
count++;
}
printf("\n");
ware1.top=-1;
}
return 0;
}
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:1001 |
C二级辅导-进制转换 (C语言代码)浏览:1049 |
C二级辅导-计负均正 (C语言代码)浏览:607 |
C语言程序设计教程(第三版)课后习题9.1 (Java代码)浏览:481 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:781 |
Wu-求圆的面积 (C++代码)浏览:1994 |
筛排处理 (C语言代码)浏览:830 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:501 |
幸运数 (C++代码)浏览:2982 |
字符串对比 (C++代码)浏览:597 |