-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path8.c
70 lines (69 loc) · 979 Bytes
/
8.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
#include<stdio.h>
int MAXSIZE=8;
int stack[8];
int top=-1;
int IS_EMPTY()
{
if(top=-1)
return 1;
else
return 0;
}
int IS_FULL()
{
if(top==MAXSIZE)
return 1;
else
return 0;
}
int PEEK()
{
return stack[top];
}
int pop()
{
int data;
if(!IS_EMPTY())
{
data=stack[top];
top=top-1;
return data;
}
else
{
printf("couldn't retrive data , stack is empty \n");
}
}
int push(int data)
{
if(!IS_FULL())
{
top=top+1;
stack[top]=data;
}
else
{
printf("could not insert data , stack is full \n");
}
}
int main()
{
//push items into the stack
push(3);
push(5);
push(9);
push(11);
push(12);
push(15);
printf("Element at top of the stack : %d\n",PEEK());
printf("Element : %d\n",stack[top]);
//print stack data
while (!IS_EMPTY())
{
int data=pop();
printf("%d\n",data);
}
printf("Stack Full : %s\n",IS_FULL()?"True":"False");
printf("Stack Empty : %s\n",IS_EMPTY()?"True":"False");
return 0;
}