-
Notifications
You must be signed in to change notification settings - Fork 0
/
stack.c
85 lines (74 loc) · 1.16 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
80
81
82
83
84
#include <stdio.h>
int MAXSIZE = 7;
int stack[8];
int top = -1;
int isempty()
{
//added by nirmal
if(top = = -1)
return 1;
else
return 0;
}
int isfull()
{
if(top == MAXSIZE)
return 1;
else
return 0;
}
int peek()
{
return stack[top];
}
int pop()
{
//Commits done by Prajjawal//
int data;
if(!isempty())
{
data = stack[top];
top = top - 1;
return data;
}
else
{
printf("Could not retrieve data, Stack is empty.\n");
}
}
int push(int data)
{
////Commits done by Nishkarsh Raj Khare
if(isfull())
{
printf("The Stack is full! Cannot Enter data any further\n Please Delete first before further Insertion\n");
}
else if(isempty())
{
printf("Entering First Element");
stack[++top]=data;
}
else
{
stack[++top]=data;
}
}
int main() {
// push items on to the stack
push(3);
push(5);
push(9);
push(1);
push(12);
push(15);
printf("Element at top of the stack: %d\n" ,peek());
printf("Elements: \n");
// print stack data
while(!isempty()) {
int data = pop();
printf("%d\n",data);
}
printf("Stack full: %s\n" , isfull()?"true":"false");
printf("Stack empty: %s\n" , isempty()?"true":"false");
return 0;
}