解题思路:无
注意事项:无
参考代码:
#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 人评分
sizeof的大作用 (C语言代码)浏览:1591 |
1051(奇了怪了)浏览:747 |
程序员的表白 (C语言代码)浏览:678 |
模拟计算器 (C语言代码)浏览:2366 |
C语言程序设计教程(第三版)课后习题12.1 (C语言代码)浏览:689 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:548 |
小O的数字 (C语言代码)浏览:1490 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:630 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:381 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:584 |