-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stack.c
108 lines (91 loc) · 1.53 KB
/
Stack.c
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
106
107
108
#include<stdio.h>
#include<stdlib.h>
#define MAX 5
int top=-1;
int stack[MAX];
int push();
int pop();
int display();
int underflow();
int overflow();
void main()
{
int status;
int ch;
while(1)
{
printf("\n\n1.Push\n2.Pop\n3.Display\n4.Exit");
printf("\n\nEnter your choice(1-4):");
scanf("%d",&ch);
switch(ch)
{
case 1: status = push();
if(status==1)
printf("\nElement inserted successfully");
break;
case 2: status = pop();
if(status==1)
printf("\nElement deleted successfully");
break;
case 3: status = display();
if(status==1)
printf("\nElement displayed successfully");
break;
case 4: exit(0);
default: printf("\nWrong Choice!!");
}
}
}
int overflow()
{
if(top==MAX-1)
return 0;
return 1;
}
int underflow()
{
if(top <= -1)
return 0;
return 1;
}
int push()
{
int i,val;
i=overflow();
if(i==0)
printf("\n Stack Overflow");
else
{
printf("\nEnter element to push:");
scanf("%d",&val);
stack[top]=val;
top++;
return 1;
}
}
int pop()
{ int i;
i=underflow();
if(i==0)
printf("\n Stack Underflow");
else
{
printf("\nDeleted element is %d",stack[top]);
top=top-1;
return 1;
}
}
int display()
{
int i;
i=underflow();
if(i==0)
printf("\n Stack is Empty");
else
{
printf("\nStack is...\n");
for(i=top;i>=0;i-- )
printf("%d\n",stack[i]);
return 1;
}
}