-
Notifications
You must be signed in to change notification settings - Fork 0
/
stack.cpp
98 lines (83 loc) · 1.48 KB
/
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
#include <iostream>
using namespace std;
class Stack {
private:
int top;
int* arr;
int size;
public:
Stack() {
top = -1;
}
Stack(int length) {
this->size = length;
arr = new int[size];
top = -1;
}
int __top__() {
return top;
}
void pop() {
if (isEmpty()) {
cout << "Stack is empty" << endl;
return;
}
top--;
}
void push(int value) {
if (top == size - 1) {
int* temp = new int[size * 2];
for (int i = 0; i < size; i++) {
temp[i] = arr[i];
}
delete[] arr;
arr = temp;
size *= 2;
}
top++;
arr[top] = value;
}
bool isEmpty() {
return top == -1;
}
bool isFull() {
return top == size - 1;
}
void print() {
for (int i = 0; i <= top; i++) {
cout << arr[i] << " ";
}
cout << endl;
}
};
int main() {
// Implementation of all functions of stack
Stack s(5);
s.isEmpty();
s.push(1);
s.push(2);
s.push(3);
s.push(4);
s.print();
s.pop();
s.print();
s.push(5);
s.push(6);
s.print();
s.pop();
s.pop();
s.pop();
s.pop();
s.pop();
s.pop();
s.print();
s.push(7);
s.push(8);
s.push(9);
s.push(10);
s.push(11);
s.push(12);
s.print();
cout << s.__top__() << endl;
return 0;
}