-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstack.c
83 lines (74 loc) · 1.41 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
#include <stdio.h>
#include <stdbool.h>
#define SIZE 20
int stack[SIZE];
int top = -1;
bool isEmpty() {
return top == -1;
}
bool isFull() {
return top == SIZE - 1;
}
void push(int element) {
if (!isFull()) {
top++;
stack[top] = element;
} else {
printf("Stack overflow\n");
}
}
void pop() {
if (!isEmpty()) {
printf("%d is popped\n", stack[top]);
top--;
} else {
printf("Stack underflow\n");
}
}
void peek() {
if (!isEmpty()) {
printf("%d\n", stack[top]);
} else {
printf("Stack underflow\n");
}
}
void display() {
if (!isEmpty())
for (int i = top; i >= 0; i--)
printf("%d\n", stack[i]);
else
printf("Stack underflow\n");
}
int main() {
int choice, element;
printf("1. Display\n");
printf("2. Push\n");
printf("3. Pop\n");
printf("4. Peek\n");
printf("5. Exit\n");
while (1) {
printf("Enter your choice: ");
scanf("%d", &choice);
switch (choice) {
case 1:
display();
break;
case 2:
printf("Enter element to push: ");
scanf("%d", &element);
push(element);
break;
case 3:
pop();
break;
case 4:
peek();
break;
case 5:
return 0;
default:
printf("Invalid choice\n");
}
}
return 0;
}