-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdynamic_array.cpp
215 lines (203 loc) · 5.78 KB
/
dynamic_array.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*
***************************
* *
* Author: Swaraj Deep *
* *
***************************
*/
#include <iostream>
#include <algorithm>
#include <exception>
using namespace std;
template<typename T>
class dynamic_array { // Class template for dynamic array
private:
int len; // To store the length of the array
int capacity; // To store the actual capacity of the array
T* arr; // Actual array
void operator = (const dynamic_array&) {} // Protect the assignment operator
dynamic_array(const dynamic_array&) {} // Protect copy constructor
public:
int size (); // Get the size of the array
bool is_empty (); // Check whether the array is empty of not
T get_elem_at (int p_index); // Get the element at index p_index
void append (T obj); // Append the obj to the last of the array
int index_of (T obj); // Get the index of the given obj
T remove_at (int p_index); // Remove the element from the index p_index
T remove (T obj); // Remove the obj from the array
T operator[] (int p_index); // Overloading subscript operator for just getting the value at p_index
dynamic_array (int p_capacity) // Constructor with the given capacity
: len{0}
, capacity{p_capacity}
{
if (p_capacity < 0) {
cerr << "Exception: Capacity cannot be negative.\n";
capacity = 4;
}
if (capacity == 0) capacity = 4;
arr = new T[capacity]; // Should be a try catch block here but too lazy to implement it
}
dynamic_array () { // Non parametrized Constructor
len = 0;
capacity = 4;
arr = new T[capacity];
}
~dynamic_array () { // Destructor
delete[] arr;
}
T* get_start_ptr () { // Get the pointer to the start of the array;
return arr;
}
void clear () {
len = 0;
capacity = 0;
delete [] arr;
}
};
template <typename T>
int dynamic_array<T>::size () {
return this->len;
}
template <typename T>
bool dynamic_array<T>::is_empty () {
return size () == 0;
}
template <typename T>
T dynamic_array<T>::get_elem_at (int p_index) {
try {
// Check if the index is valid or not
if (p_index < 0 || p_index >= capacity) {
throw runtime_error ("Exception: array_index_out_of_bounds.");
}
// Return the object at the given index
return arr[p_index];
} catch (const exception& e) {
// If exception occurs
cerr << e.what () << '\n';
}
}
template <typename T>
void dynamic_array<T>::append (T obj) {
// Checks if there is a need to resize the array
if (len + 1 > capacity) {
capacity *= 2;
T* new_arr = new T[capacity];
for (int i = 0; i < len; ++i) {
new_arr[i] = arr[i]; // Copies the content to a temporary array;
}
arr = new_arr;
}
arr[len++] = obj;
}
template <typename T>
int dynamic_array<T>::index_of (T obj) {
int pos = -1;
for (int i = 0; i < len; ++i) {
if (arr[i] == obj) {
pos = i;
break;
}
}
try {
// Checks if the obj is present in the array or not
if (pos == -1) {
throw runtime_error ("Exception: Element not found.");
}
return pos;
} catch (const exception& e) {
cerr << e.what () << '\n';
}
}
template <typename T>
T dynamic_array<T>::remove_at (int p_index) {
try {
// Check if the index is valid or not
if (p_index < 0 || p_index >= len) {
throw runtime_error ("Exception: array_index_out_or_bounds.");
}
T del_data = arr[p_index];
T* new_arr = new T[len - 1];
// Copies the elements except at p_index
for (int i = 0, j = 0; i < len; ++i, ++j) {
if (i == p_index) {
j--;
} else {
new_arr[j] = arr[i];
}
}
arr = new_arr;
capacity = --len;
return del_data;
} catch (const exception& e) {
cerr << e.what () << '\n';
}
}
template <typename T>
T dynamic_array<T>::remove (T obj) {
try {
int pos = -1;
for (int i = 0; i < len; ++i) {
if (arr[i] == obj) {
pos = i;
break;
}
}
// Checks if the given elem is present or not
if (pos == -1) {
throw runtime_error ("Exception: Element not found.");
}
remove_at (pos);
} catch (const exception& e) {
cerr << e.what () << '\n';
}
}
template <typename T>
T dynamic_array<T>::operator[] (int p_index) {
try {
// Check for whether p_index is valid or not
if (p_index < 0 || p_index >= len) {
throw runtime_error ("Exception: array_index_out_of_bounds.");
}
// Return the element at p_index
return arr[p_index];
} catch (const exception& e) {
cerr << e.what () << '\n';
}
}
// Driver Program
int main () {
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
dynamic_array<int> a(5), b;
a.append (1002);
a.append (-9);
for (int i = 0; i < 5; ++i) {
a.append (i + 10);
}
a.append (0);
a.append (8);
a.append (-10);
// b = a; Will give error as assignment operator is private with this context
cout << "Array b: ";
for_each (b.get_start_ptr(), b.get_start_ptr () + b.size (), [](int x){cout << x << ' ';});
cout << '\n';
cout << "Before Sorting: ";
for_each (a.get_start_ptr(), a.get_start_ptr () + a.size (), [](int x){cout << x << ' ';});
cout << '\n';
cout << "After Sorting: ";
sort (a.get_start_ptr (), a.get_start_ptr () + a.size ());
for_each (a.get_start_ptr(), a.get_start_ptr () + a.size (), [](int x){cout << x << ' ';});
cout << '\n';
cout << "After removing 1002: ";
a.remove (1002);
for_each (a.get_start_ptr(), a.get_start_ptr () + a.size (), [](int x){cout << x << ' ';});
cout << '\n';
cout << "After removing 10: ";
a.remove (10);
for_each (a.get_start_ptr(), a.get_start_ptr () + a.size (), [](int x){cout << x << ' ';});
cout << '\n';
cout << "After removing -10: ";
a.remove (-10);
for_each (a.get_start_ptr(), a.get_start_ptr () + a.size (), [](int x){cout << x << ' ';});
cout << '\n';
return 0;
}