-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlec54_stack.cpp
126 lines (99 loc) · 1.75 KB
/
lec54_stack.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
// Stack
/*
#include <iostream>
#include <stack>
using namespace std;
int main()
{
// creation
stack<int> s;
// push
s.push(1);
s.push(2);
s.push(3);
// pop
s.pop();
s.push(12);
cout<<"Printing top element: "<<s.top()<<endl;
cout<<"Empty ?== "<<boolalpha<<s.empty()<<endl;
cout<<"Size == "<<s.size()<<endl;
s.pop();
cout<<"Size == "<<s.size()<<endl;
return 0;
}
*/
#include <iostream>
using namespace std;
class Stack
{
// properties
public:
int *arr;
int top;
int size;
Stack(int size)
{
this->size = size;
arr = new int[size];
top = -1;
}
void push(int element)
{
if (top == size - 1)
{
cout << "Stack overflow condition" << endl;
}
else
{
top++;
arr[top] = element;
}
}
void pop()
{
if (top == -1)
{
cout << "Stack underflow condition" << endl;
}
else
{
top--;
}
}
int peek()
{
if (top >= 0 && top < size)
return arr[top];
else
cout << "Stack is Empty";
return -1;
}
bool isEmpty()
{
if (top == -1)
return true;
else
return false;
}
};
int main()
{
Stack st(5);
st.push(11);
st.push(12);
st.push(13);
st.push(11);
st.push(12);
st.push(13);
cout << st.peek() << endl;
st.pop();
cout << st.peek() << endl;
st.pop();
cout << st.peek() << endl;
st.pop();
cout << st.peek() << endl;
if (st.isEmpty())
cout << "Stack is empty" << endl;
else
cout << "Stack is not empty" << endl;
}