-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharray_stack_ADT
141 lines (134 loc) · 2.6 KB
/
array_stack_ADT
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#include <stdio.h>
#include <stdlib.h>
struct stack
{
int size;
int top;
int *s;
};
void push(struct stack *Stack, int value);
int peek(struct stack Stack);
int pop(struct stack *Stack);
void display(struct stack Stack);
void isFull(struct stack Stack);
void isEmpty(struct stack Stack);
int main(int argc, char* argv[])
{
int ask;
struct stack Stack;
printf("\n\n********* Welcome to Menu Driven Stack Implemented in C *********\n");
printf("Enter size of the stack: ");
scanf("%d",&Stack.size);
Stack.s=(int*)malloc(sizeof(int)*Stack.size);
Stack.top=-1;
printf("[1] for Push\n");
printf("[2] for Pop\n");
printf("[3] for Peek\n");
printf("[4] for Display\n");
printf("[5] for IsEmpty\n");
printf("[6] for isFull\n");
printf("[7] for Close Program\n");
printf("Enter your choice: ");
scanf("%d",&ask);
while (ask != 7)
{
if (ask == 1)
{
int val;
printf("Enter Element to Push: ");
scanf("%d",&val);
push(&Stack,val);
}
else if (ask == 2)
{
printf("%d\n",pop(&Stack));
}
else if (ask == 3)
{
printf("%d\n",peek(Stack));
}
else if(ask == 4)
{
display(Stack);
}
else if(ask == 5)
{
isEmpty(Stack);
}
else if(ask == 6)
{
isFull(Stack);
}
printf("Enter your choice: ");
scanf("%d",&ask);
}
return 0;
}
void isEmpty(struct stack Stack)
{
if (Stack.top==-1)
{
printf("The Stack is Empty\n");
}
else
{
printf("The Stack is not Empty\n");
}
}
void isFull(struct stack Stack)
{
if (Stack.top == Stack.size-1)
{
printf("The Stack is Full\n");
}
else
{
printf("The Stack is not Full\n");
}
}
void display(struct stack Stack)
{
if (Stack.top == -1)
{
printf("Stack Underflow\n");
}
else
{
int i;
for(i=Stack.top; i>=0; i--)
{
printf("%d\n",Stack.s[i]);
}
}
}
int pop(struct stack *Stack)
{
int x = -1;
if (Stack->top != -1)
{
x = Stack->s[Stack->top];
Stack->top--;
}
return x;
}
int peek(struct stack Stack)
{
int x = -1;
if (Stack.top != -1)
{
x=Stack.s[Stack.top];
}
return x;
}
void push(struct stack *Stack, int value)
{
if (Stack->top==Stack->size-1)
{
printf("Stack overflow\n");
}
else
{
Stack->top++;
Stack->s[Stack->top]=value;
}
}