-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStackImplementaion.c
More file actions
78 lines (67 loc) · 1.34 KB
/
Copy pathStackImplementaion.c
File metadata and controls
78 lines (67 loc) · 1.34 KB
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
/*
stack implementaion with array
code written by nazmul hasan
*/
#include <stdio.h>
#define stackSize 15
int myStack[stackSize], top = -1;
// push --> to insert the value in the stack
void push(int value){
if(top < stackSize - 1){
printf("Push: %d\n", value);
myStack[++top] = value;
}
else
printf("stack is overflow!\n");
}
// peek --> to read the top value in the stack
void peek(){
if(top >= 0)
printf("%d\n",myStack[top]);
else
printf("stack underflow!\n");
}
// pop --> to remove the top value in the stack
void pop(){
if(top >= 0){
printf("\nPopped %d, from Stack\n", myStack[top]);
top--;
}
else
printf("stack underflow!");
}
int empty(){
if(top < 0)
return 1;
else
return 0;
}
// full stack display
void displayStack(){
printf("\nPrint the full stack from TOP to BOTTOM:\n");
for(int i = top; i >= 0; i--)
printf("%d ",myStack[i]);
}
int main(){
int i;
push(10);
push(20);
push(30);
push(40);
peek();
pop();
peek();
displayStack();
if(empty())
printf("\nstack empty");
else
printf("\nstack not empty");
pop();
pop();
pop();
peek();
if(empty())
printf("\nstack empty");
else
printf("\nstack not empty");
}