-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstack_using_arr.c
69 lines (61 loc) · 1.25 KB
/
stack_using_arr.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
#include <stdio.h>
#include <stdlib.h>
#define MAX 5
int top = -1;
int stack[MAX];
void push();
void pop();
void traverse();
int main() {
int ch;
do {
printf("\n 1. PUSH ");
printf("\n 2. POP");
printf("\n 3. Traverse/Display");
printf("\n 4. Exit ");
printf("\n Enter your choice: ");
scanf("%d", &ch);
switch (ch) {
case 1:
push();
break;
case 2:
pop();
break;
case 3:
traverse();
break;
case 4:
exit(0);
default:
printf("INVALID CHOICE");
break;
}
} while (ch != 4);
return 0;
}
void push() {
int m;
if (top == MAX - 1) {
printf("Stack Overflow");
return;
}
printf("Input the new element: ");
scanf("%d", &m);
top++;
stack[top] = m;
}
void pop() {
if (top == -1) {
printf("Stack is empty or underflow");
return;
}
stack[top] = 0;
top--;
}
void traverse() {
int i;
for (i = top; i >= 0; i--) {
printf("%d\n", stack[i]);
}
}