-
Notifications
You must be signed in to change notification settings - Fork 0
/
stack_implementation_using_array.cpp
105 lines (95 loc) · 1.8 KB
/
stack_implementation_using_array.cpp
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
#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,top;
for(i=st.top ;i>=0;i--)
printf("%d ",st.S[i]);
printf("\n");
}
//PUSH FUNCTION
void push(struct Stack *st,int x)
//no return type so void
{
if(st->top==st->size-1)
printf("Stack overflow\n");
else
{
//increment the top value
st->top++;
st->S[st->top]=x;
}
}
//POP FUNCTION
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 <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);
push(&st,50);
// Display(st);
// printf("%d\n",pop(&st));
// Display(st);
// printf("%d\n",pop(&st)); //second time pop
// Display(st);
// printf("%d\n",pop(&st)); //third time pop
// Display(st);
// printf("%d\n",pop(&st)); //fourth time pop
// Display(st);
// printf("%d\n",pop(&st)); //fifth time pop
// Display(st);
// printf("%d\n",pop(&st)); //sixth time pop
// Display(st);
printf("%d \n",peek(st,2));
return 0;
}