解题思路:无
注意事项:无
参考代码:
#include<stdio.h>
#include<stdlib.h>
#include<stdbool.h>
#include<string.h>
typedef struct ware_house{
int num;
struct ware_house *next;
}ware_ ,* WARE;
int push_ware(WARE head){
WARE ware1=malloc(sizeof(ware_));
ware1->next=head->next;
head->next=ware1;
scanf("%d",&ware1->num);
return 0;
}
int pop_ware(WARE head){
if(head->next==NULL)//判断栈空
return false;
WARE temp=head->next;
head->next=head->next->next;
free(temp);
return 0;
}
int read_ware(WARE head){
if(head->next==NULL){//判断栈空
printf("E\n");
}else{
printf("%d\n",head->next->num);
}
return 0;
}
int FREE(WARE head){
WARE temp=malloc(sizeof(ware_));
while(head->next!=NULL){
temp=head->next;
head->next=temp->next;
free(temp);
}
return 0;
}
int main()
{ WARE head=malloc(sizeof(ware_));
head->next=NULL;
char ch;
int n;
while(scanf("%d",&n)&&n!=0){
int count=1;
while(count<=n){
getchar();
scanf("%c",&ch);
switch(ch){
case 'P':
push_ware(head);
break;
case 'O':
pop_ware(head);
break;
case 'A':
read_ware(head);
break;
default:
break;
}
count++;
}
printf("\n");
FREE(head);
}
free(head);
return 0;
}
0.0分
1 人评分
C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复