-
Notifications
You must be signed in to change notification settings - Fork 180
/
StackByArray.cpp
122 lines (113 loc) · 1.56 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 50
using namespace std;
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<<"\n\nSTACK OVERFLOW!";
return 0;
}
else
{
a[top++]=x;
cout<<"\n\nSuccessfully Pushed : "<<x;
return 1;
}
}
int Stack::pop()
{
if(top<=0)
{
cout<<"\n\nSTACK UNDERFLOW!";
return 0;
}
else
{
//cout<<"\n\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<<"\n\nSTACK IS EMPTY! ";
return -1;
}
else
{
return(a[top-1]);
}
}
void Stack::display()
{
if(top<=0)
{
cout<<"\n\nSTACK IS EMPTY! ";
}
else
{
cout<<"\n\nCurrent Stack : ";
for(int i=0;i<top;++i)
cout<<a[i]<<" ";
}
}
int main()
{
Stack s;
int ch=1;
cout<<"1 to push\n\n2 to pop\n\n3 to display\n\n4 to get top element\n\n5 to check if stack empty\n\n";
while(choice)
{
cout<<"\n\nEnter choice: ";
cin>>ch;
if(ch==1)
{
int ele;
cout<<"\nEnter element to push: ";
cin>>ele;
s.push(ele);
}
else if(ch==2)
{
cout<<"\n";
cout<<s.pop()<<" is popped from stack";
}
else if(ch==3)
{
s.display();
}
else if(ch==4)
{
cout<<"\n";
if(s.peek()!=-1)
cout<<s.peek()<<" is on top";
}
else if(ch==5)
{
s.isEmpty()?cout<<"\nStack is empty!":cout<<"\nStack is not empty!";
}
}
}