-
Notifications
You must be signed in to change notification settings - Fork 0
/
stack_02.cpp
172 lines (150 loc) · 2.78 KB
/
stack_02.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*
In stack
first of all check the top pointer
** for full stack
top == size - 1;
** for empty stack
top == -1;
** insert operation
check the stack is full or not
top ++;
arr[top] = item
** delete operation
check the stack is empty or not
item = arr[top];
return item;
top--;
** display
check the stack is empty or not
for loop
i start from top
i <=0
i--
*/
#include <iostream>
#include <string>
using namespace std;
int size, i, val;
class stack
{
private:
int stack_arr[100];
int top = -1;
public:
stack()
{
top = -1;
for (i = 0; i < size; i++)
{
stack_arr[size] = 0;
}
}
bool isFull()
{
if (top == size - 1)
{
cout << "Stack is Overflow" << endl;
return true;
}
else
{
return false;
}
}
bool isEmpty()
{
if (top == -1)
{
cout << "Stack is Underflow" << endl;
return true;
}
else
{
return false;
}
}
void push(int val)
{
if (isFull())
{
cout << "Stack is Overflow" << endl;
}
else
{
top++;
stack_arr[top] = val;
}
}
int pop()
{
if (isEmpty())
{
cout << "Stack is underflow" << endl;
return 0;
}
else
{
int pop_val = stack_arr[top];
stack_arr[top] = 0;
return pop_val;
top--;
}
}
void display()
{
if (isEmpty())
{
cout << "Stack is underflow" << endl;
}
else
{
cout << "Elements of STACK" << endl;
for (i = top; i >= 0; i--)
{
cout<< stack_arr[i]<<endl;
}
}
}
};
int main()
{
stack st;
cout << "size of stack" << endl;
cin >> size;
int choice;
do
{
cout << "What are the operation Do you want to perform" << endl;
cout << "1. PUSH()" << endl;
cout << "2. POP()" << endl;
cout << "3. Display()" << endl;
cin >> choice;
switch (choice)
{
case 1:
{
cout << "Enter the PUSH element" << endl;
cin >> val;
st.push(val);
break;
}
case 2:
{
st.pop();
cout << "The elment is poped " << endl;
break;
}
case 3:
{
cout << "Display Function Called" << endl;
st.display();
break;
}
default:
{
cout << "Enter the valid operation Id ( 1/2/3)" << endl;
}
}
} while (choice != 5);
return 0;
}