-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstackmain.cpp
58 lines (51 loc) · 1.12 KB
/
stackmain.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
#include "stack.h"
template<typename T>
Stack<T>::Stack(int size) {
this->TotalSize = size;
this->CurrentSize = 0;
this->arr = new T[TotalSize];
}
template<typename T>
Stack<T>::~Stack() {
delete[] arr;
}
template<typename T>
bool Stack<T>::isEmpty() {
return this->CurrentSize == 0;
}
template<typename T>
bool Stack<T>::isFull() {
return this->CurrentSize == this->TotalSize;
}
template<typename T>
void Stack<T>::push(T data) {
if (isFull()) {
std::cout << "Stack is full" << std::endl;
return;
}
else {
this->arr[this->CurrentSize] = data;
this->CurrentSize++;
}
}
template<typename T>
T Stack<T>::pop() {
if (isEmpty()) {
std::cout << "Stack is empty" << std::endl;
return T();
}
else {
this->CurrentSize--;
return this->arr[this->CurrentSize];
}
}
template<typename T>
T Stack<T>::peek() {
if (isEmpty()) {
std::cout << "Stack is empty" << std::endl;
return T();
}
else {
return this->arr[this->CurrentSize - 1];
}
}