-
Notifications
You must be signed in to change notification settings - Fork 361
/
Copy pathstack_implementation_using_array.c
79 lines (79 loc) · 1.39 KB
/
stack_implementation_using_array.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>
#include <stdlib.h>
struct Stack
{
int size;
int top;
int *S;
};
void create(struct Stack *st)
{
printf("Enter Size");
scanf("%d", &st->size);
st->top = -1;
st->S = (int *)malloc(st->size * sizeof(int));
}
void Display(struct Stack st)
{
int i;
for (i = st.top; i >= 0; i--)
printf("%d ", st.S[i]);
printf("\n");
}
void push(struct Stack *st, int x)
{
if (st->top == st->size - 1)
printf("Stack overflow\n");
else
{
st->top++;
st->S[st->top] = x;
}
}
int pop(struct Stack *st)
{
int x = -1;
if (st->top == -1)
printf("Stack Underflow\n");
else
{
x = st->S[st->top--];
}
return x;
}
int peek(struct Stack st, int index)
{
int x = -1;
if (st.top - index + 1 < 0)
printf("Invalid Index \n");
x = st.S[st.top - index + 1];
return x;
}
int isEmpty(struct Stack st)
{
if (st.top == -1)
return 1;
return 0;
}
int isFull(struct Stack st)
{
return st.top == st.size - 1;
}
int stackTop(struct Stack st)
{
if (!isEmpty(st))
return st.S[st.top];
return -1;
}
int main()
{
struct Stack st;
create(&st);
push(&st, 10);
push(&st, 20);
push(&st, 30);
push(&st, 40);
printf("%d \n", peek(st, 2));
Display(st);
return 0;
}