-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStack expression-I.c
More file actions
105 lines (96 loc) · 2.02 KB
/
Stack expression-I.c
File metadata and controls
105 lines (96 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
struct stack{
int data;
int size;
struct stack*next;
};
struct stack* newnode(int data){
struct stack* node=(struct stack*)(malloc(sizeof(struct stack)));
node->data=data;
node->next=NULL;
return node;
}
int isempty(struct stack**head){
if((*head)==NULL){
return 1;
}
else {
return 0;
}
}
void push(struct stack**head,int val){
struct stack*node=newnode(val);
if((*head)==NULL){
(*head)=node;
(*head)->size=1;
return;
}
node->size=(*head)->size;
node->next=(*head);
(*head)=node;
(*head)->size=node->size+1;
return;
}
void pop(struct stack**head){
if(isempty(head)){
return;
}
if((*head)->next==NULL){
(*head)=NULL;
return;
}
struct stack*temp=(*head);
(*head)=(*head)->next;
(*head)->size=temp->size-1;
free(temp);
}
int top(struct stack**head){
if(isempty(head)){
return -1;
}
return (*head)->data;
}
int size(struct stack**head){
if((*head)==NULL){
return 0;
}
return (*head)->size;
}
int main(){
struct stack*s=NULL;
int n;
scanf("%d\n",&n);
for(int i=0;i<n;i++){
int operation;
scanf("%d ",&operation);
if(operation==0){
int num;
scanf("%d\n",&num);
push(&s,num);
}
else if(operation==1){
if(isempty(&s)){
printf("!\n");
}
else{
printf("%d\n",top(&s));
pop(&s);
}
}
else if(operation==2){
if(isempty(&s)){
printf("!\n");
}
else{
printf("%d\n",top(&s));
}
}
else{
printf("%d\n",size(&s));
}
}
return 0;
}