-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack.c
79 lines (70 loc) · 1.26 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
#include <stdio.h>
#define n 100
int stack[n], top = -1;
void display(){
printf("\nStack: \n");
for(int i = top; i >= 0; i--)
printf("%d\n", stack[i]);
}
void push(){
if (top == n)
printf("\nEnd Of Stack!");
else{
int e;
printf("\nEnter The Element To Push: ");
scanf("%d",&e);
stack[++top] = e;
}
}
void peak(){
if (top == -1)
printf("\nStack Empty!");
else
printf("Peak Value: %d\n",stack[top]);
}
void pop(){
if (top != -1){
int popElement = stack[top--];
printf("\nPopped Element: %d", popElement);
if (top != -1)
display();
}
else
printf("\nStack Empty!");
}
void main(){
int menuFlag = 1;
while (menuFlag == 1){
printf("\n\t\t ============= MENU =============");
printf("\n\t\t 1) Push");
printf("\n\t\t 2) Pop");
printf("\n\t\t 3) Peak");
printf("\n\t\t 4) Display");
printf("\n\t\t 5) Exit");
printf("\n\t\t ================================\n");
int o;
printf("\nEnter Your Option: ");
scanf("%d", &o);
switch(o){
case 1:
push();
break;
case 2:
pop();
break;
case 3:
peak();
break;
case 4:
display();
break;
case 5:
printf("\nClosing...\n");
menuFlag = 0;
break;
default:
printf("\nPlease Enter A Valid Option!\n");
break;
}
}
}