-
Notifications
You must be signed in to change notification settings - Fork 307
/
StackByArray.cpp
122 lines (114 loc) · 1.48 KB
/
StackByArray.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#include<iostream>
#define MAX 100
using namespace std;
//array implementation of stack!
class Stack
{
int top;
public:
int a[MAX];
Stack()
{
top=0;
}
bool push(int x);
int pop();
bool isEmpty();
int peek();
void display();
};
bool Stack::push(int x)
{
if(top>=MAX)
{
cout<<"\nSTACK OVERFLOW!";
return 0;
}
else
{
a[top++]=x;
cout<<"\nSuccessfully Pushed : "<<x;
return 1;
}
}
int Stack::pop()
{
if(top<=0)
{
cout<<"\nSTACK UNDERFLOW!";
return 0;
}
else
{
//cout<<"\nSuccessfully Pop : "<<a[top-1];
int x=a[top-1];
--top;
return x;
}
}
bool Stack::isEmpty()
{
return(!top);
}
int Stack::peek()
{
if(top==0)
{
cout<<"\nSTACK IS EMPTY! ";
return -1;
}
else
{
return(a[top-1]);
}
}
void Stack::display()
{
if(top<=0)
{
cout<<"\nSTACK IS EMPTY! ";
}
else
{
cout<<"\nCurrent Stack : ";
for(int i=0;i<top;++i)
cout<<a[i]<<" ";
}
}
int main()
{
Stack s;
int choice=1;
cout<<"1 to push\n2 to pop\n3 to display\n4 to get top element\n5 to check if stack empty\n";
while(choice)
{
cout<<"\nEnter choice: ";
cin>>choice;
if(choice==1)
{
int ele;
cout<<"\nEnter element to push: ";
cin>>ele;
s.push(ele);
}
else if(choice==2)
{
cout<<"\n";
cout<<s.pop()<<" is popped from stack";
}
else if(choice==3)
{
s.display();
}
else if(choice==4)
{
cout<<"\n";
if(s.peek()!=-1)
cout<<s.peek()<<" is on top";
}
else if(choice==5)
{
s.isEmpty()?cout<<"\nStack is empty!":cout<<"\nStack is not empty!";
}
}
}