forked from ashwin-nair98/ds_lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.c
More file actions
77 lines (68 loc) · 1.04 KB
/
stack.c
File metadata and controls
77 lines (68 loc) · 1.04 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
#include<stdio.h>
int MAXSIZE = 8;
int stack[8];
int top = -1;
int isempty() {
if(top == -1)
return 1;
else
return 0;
}
int isfull() {
if(top == MAXSIZE)
return 1;
else
return 0;
}
int pop() {
int data;
if(!isempty()) {
data = stack[top];
top = top - 1;
return data;
}
else {
printf("Could not retrieve data, Stack is empty.\n");
}
return 0;
}
void push(int data) {
if(!isfull()) {
top = top + 1;
stack[top] = data;
}
else
printf("Could not insert data, Stack is full.\n");
}
void display()
{ int i = 0;
if(!isempty()){
for (int i = top; i >=0; i--)
printf("%d\t", stack[i]);
printf("\n");
}
else
printf("Stack empty\n");
}
int main()
{
int ch, element;
do{
printf("1.Push \n2.Pop \n3.Display \n4.Exit\n");
scanf("%d", &ch);
switch(ch)
{
case 1: printf("Enter the element: ");
scanf("%d", &element);
push(element);
break;
case 2: printf("%d popped.", pop());
break;
case 3: display();
break;
case 4: printf("Exiting..\n");
break;
}
}while(ch!=4);
return 0;
}