-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDynamicArray.h
More file actions
479 lines (446 loc) · 13.5 KB
/
Copy pathDynamicArray.h
File metadata and controls
479 lines (446 loc) · 13.5 KB
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
#pragma once
#include <optional>
constexpr size_t DEFAULT_BUFFER_SIZE = 32;
//DynamicArray {a,b,c,d,e,f,g} approximate scheme:
//[][][][][][][] [a][b][c][d][e][f][g] [][][][][][][][]
//_l_additional__________count___________r_additional__ } - capacity
//______=7________________=7__________________=8_______ =22
template<typename T>
class DynamicArray
{
public:
//Конструкторы:
DynamicArray(size_t size = 0);
DynamicArray(size_t size, const T& default_element);
DynamicArray(const T* const arr, size_t count, size_t start = 0);
DynamicArray(const DynamicArray<T>& other);
DynamicArray(DynamicArray<T>&& other);
DynamicArray(std::initializer_list<T> init);
//Доступ к элементам:
std::optional<T>& At(size_t index);
std::optional<T> At(size_t index) const;
std::optional<T>& operator[](size_t index);
const std::optional<T>& operator[](size_t index) const;
std::optional<T>& Front();
std::optional<T>& Back();
std::optional<T> Front() const;
std::optional<T> Back() const;
std::optional<T>* Data();
//Вместимость:
DynamicArray<T>& Resize(size_t new_size);
size_t Size() const;
size_t Capacity() const;
bool Empty() const;
//Модификаторы:
DynamicArray<T>& PushFront(const T& element);
DynamicArray<T>& PushBack(const T& element);
DynamicArray<T>& Insert(size_t index, const T& element, size_t count = 1);
DynamicArray<T>& PopFront();
DynamicArray<T>& PopBack();
DynamicArray<T>& Erase(size_t index, size_t count = 1);
DynamicArray<T>& Clear();
DynamicArray<T>& operator=(const DynamicArray<T>& other);
DynamicArray<T>& operator=(DynamicArray<T>&& other);
//Деструктор:
~DynamicArray() { delete[] this->data; }
private:
std::optional<T>* data;
size_t l_additional;
size_t r_additional;
size_t count;
size_t r_buffer;
size_t l_buffer;
};
template<typename T>
DynamicArray<T>::DynamicArray(size_t size)
{
this->l_buffer = this->r_buffer = DEFAULT_BUFFER_SIZE;
this->l_additional = this->l_buffer;
this->r_additional = this->r_buffer;
this->count = size;
try
{
this->data = new std::optional<T>[this->Capacity()];
}
catch (const std::bad_alloc &exc)
{
throw exc.what();
}
}
template<typename T>
DynamicArray<T>::DynamicArray(size_t size, const T& default_element) : DynamicArray(size)
{
for (size_t i = 0; i < this->count; i++)
this->data[i + this->l_additional] = default_element;
}
template<typename T>
DynamicArray<T>::DynamicArray(const T* const arr, size_t count, size_t start) : DynamicArray(count)
{
for (size_t i = 0; i < this->count; i++)
{
this->data[i + this->l_additional] = arr[i + start];
}
}
template<typename T>
DynamicArray<T>::DynamicArray(const DynamicArray<T>& other) : DynamicArray(other.count)
{
for (size_t i = 0; i < this->count; i++)
{
this->data[i + this->l_additional] = other.data[i + other.l_additional];
}
}
template<typename T>
DynamicArray<T>::DynamicArray(DynamicArray<T>&& other)
{
this->data = other.data;
other.data = nullptr;
this->l_additional = other.l_additional;
this->r_additional = other.r_additional;
this->count = other.count;
this->r_buffer = other.r_buffer;
this->l_buffer = other.l_buffer;
}
template<typename T>
DynamicArray<T>::DynamicArray(std::initializer_list<T> init) : DynamicArray(init.size())
{
for (size_t i = 0; i < init.size(); i++)
{
this->data[i + this->l_additional] = *(init.begin()+i);
}
}
template<typename T>
std::optional<T>& DynamicArray<T>::At(size_t index)
{
if (index >= this->count)
throw std::exception("Out of range");
return this->data[index + this->l_additional];
}
template<typename T>
std::optional<T> DynamicArray<T>::At(size_t index) const
{
if (index >= this->count)
throw std::exception("Out of range");
return this->data[index + this->l_additional];
}
template<typename T>
DynamicArray<T>& DynamicArray<T>::Resize(size_t new_size)
{
if (new_size > this->Capacity())
{
std::optional<T>* new_data;
//Выделение памяти под новый массив
try
{
new_data = new std::optional<T>[new_size + this->l_additional + this->r_additional];
}
catch (const std::bad_alloc & exc)
{
throw exc.what();
}
//Заполнение нового массива значениями из старого
for (size_t i = 0; i < this->count; i++)
new_data[i + this->l_additional] = this->data[i + this->l_additional];
//Удаление старого массива
delete[] this->data;
//Присвоение нового массива старому
this->data = new_data;
}
else
{
for (size_t i = new_size; i < this->count; i++)
this->data[i + this->l_additional] = std::nullopt;
this->r_additional += this->count - new_size;
}
this->count = new_size;
return *this;
}
template<typename T>
size_t DynamicArray<T>::Size() const
{
return this->count;
}
template<typename T>
size_t DynamicArray<T>::Capacity() const
{
return this->count + this->l_additional + this->r_additional;
}
template<typename T>
bool DynamicArray<T>::Empty() const
{
for (size_t i = 0; i < this->count; i++)
if (this->data[i + this->l_additional] != std::nullopt)
return false;
return true;
}
template<typename T>
DynamicArray<T>& DynamicArray<T>::PushFront(const T& element)
{
if (l_additional != 0)
{
this->data[--l_additional] = element;
}
else
{
std::optional<T>* new_data;
//Удвоение буффера
this->l_buffer *= 2;
//Изменение вместимости
this->l_additional = this->l_buffer;
//Выделение памяти под новый массив
try
{
new_data = new std::optional<T>[this->Capacity() + 1];
}
catch (const std::bad_alloc & exc)
{
throw exc.what();
}
//Заполнение первой ячейки нового массива
new_data[this->l_additional] = element;
//Заполнение нового массива значениями из старого
for (size_t i = 0; i < this->count; i++)
new_data[i + 1 + this->l_additional] = this->data[i];
//Удаление старого массива
delete[] this->data;
//Присвоение нового массива старому
this->data = new_data;
}
this->count++;
return *this;
}
template<typename T>
DynamicArray<T>& DynamicArray<T>::PushBack(const T& element)
{
if (r_additional != 0)
{
this->data[this->l_additional+this->count] = element;
r_additional--;
}
else
{
std::optional<T>* new_data;
//Удвоение буффера
this->r_buffer *= 2;
//Изменение вместимости
this->r_additional = this->r_buffer;
//Выделение памяти под новый массив
try
{
new_data = new std::optional<T>[this->Capacity() + 1];
}
catch (const std::bad_alloc & exc)
{
throw exc.what();
}
//Заполнение нового массива значениями из старого
for (size_t i = 0; i < this->count; i++)
new_data[i + this->l_additional] = this->data[i + this->l_additional];
//Заполнение последней ячейки нового массива
new_data[this->l_additional + this->count] = element;
//Удаление старого массива
delete[] this->data;
//Присвоение нового массива старому
this->data = new_data;
}
this->count++;
return *this;
}
template<typename T>
DynamicArray<T>& DynamicArray<T>::Insert(size_t index, const T& element, size_t count)
{
if (index > this->count)
throw std::exception("Invalid index");
if (index == this->count)
return this->PushBack(element);
if (this->l_additional + this->r_additional >= count)
{
size_t r_shift = this->r_additional >= count ? count : this->r_additional;
size_t l_shift = count - r_shift;
for (size_t i = this->count - 1; i >= index; i--)
std::swap(this->data[i + this->l_additional], this->data[i + this->l_additional + r_shift]);
if (l_shift)
for (size_t i = 0; i < index; i++)
std::swap(this->data[i + this->l_additional], this->data[i + this->l_additional - l_shift]);
this->l_additional -= l_shift;
this->r_additional -= r_shift;
for (size_t i = index; i < index + count; i++)
this->data[i + this->l_additional] = element;
}
else
{
std::optional<T>* new_data;
//Удвоение буффера
this->r_buffer *= 2;
this->l_buffer *= 2;
//Выделение памяти под новый массив
try
{
new_data = new std::optional<T>[this->count + count + this->l_buffer + this->r_buffer];
}
catch (const std::bad_alloc & exc)
{
throw exc.what();
}
//Заполнение нового массива значениями из старого
for (size_t i = 0; i < index; i++)
new_data[i + this->l_buffer] = this->data[i + this->l_additional];
//Заполнение нового массива передаваемыми элементами
for (size_t i = index; i < index + count; i++)
new_data[i + this->l_buffer] = element;
//Заполнение нового массива значениями из старого
for (size_t i = index + count; i < this->count + count; i++)
new_data[i + this->l_buffer] = this->data[i - count + this->l_additional];
//Удаление старого массива
delete[] this->data;
//Присвоение нового массива старому
this->data = new_data;
//Изменение вместимости
this->l_additional = this->l_buffer;
this->r_additional = this->r_buffer;
}
this->count += count;
return *this;
}
template<typename T>
DynamicArray<T>& DynamicArray<T>::PopFront()
{
if (this->count-- == 0)
throw std::exception("Array is empty");
this->data[this->l_additional++] = std::nullopt;
return *this;
}
template<typename T>
DynamicArray<T>& DynamicArray<T>::PopBack()
{
if (this->count == 0)
throw std::exception("Array is empty");
this->data[this->l_additional+--this->count] = std::nullopt;
this->r_additional++;
return *this;
}
template<typename T>
DynamicArray<T>& DynamicArray<T>::Erase(size_t index, size_t count)
{
if (index + count > this->count)
throw std::exception("Out of range");
for (size_t i = index; i < index + count; i++)
this->data[i + this->l_additional] = std::nullopt;
size_t r_shift = count / 2;
size_t l_shift = count - r_shift;
if(r_shift)
for (size_t i = index+count; i < this->count; i++)
std::swap(this->data[i + this->l_additional], this->data[i + this->l_additional - r_shift]);
for (int i = index-1; i >= 0; i--)
std::swap(this->data[i + this->l_additional], this->data[i + this->l_additional + l_shift]);
this->l_additional += l_shift;
this->r_additional += r_shift;
this->count -= l_shift + r_shift;
return *this;
}
template<typename T>
DynamicArray<T>& DynamicArray<T>::Clear()
{
for (size_t i = 0; i < this->count; i++)
this->data[i + this->l_additional] = std::nullopt;
size_t l_additional_add = this->count / 2;
size_t r_additional_add = this->count - l_additional_add;
this->l_additional += l_additional_add;
this->r_additional += r_additional_add;
this->count = 0;
return *this;
}
template<typename T>
DynamicArray<T>& DynamicArray<T>::operator=(const DynamicArray<T>& other)
{
if (this == &other)
return *this;
if (this->Capacity() < other.count)
{
delete[] this->data;
try
{
this->data = new std::optional<T>[other.count + this->r_additional + this->l_additional];
}
catch (const std::bad_alloc & exc)
{
throw exc.what();
}
}
else
{
size_t l_additional_new = (this->Capacity() - other.count) / 2;
size_t r_additional_new = this->Capacity() - other.count - l_additional_new;
this->l_additional = l_additional_new;
this->r_additional = r_additional_new;
for (size_t i = 0; i < this->l_additional; i++)
this->data[i] = std::nullopt;
for (size_t i = this->l_additional + other.count; i < this->l_additional + this->r_additional + other.count; i++)
this->data[i] = std::nullopt;
}
for (size_t i = 0; i < other.count; i++)
this->data[i + this->l_additional] = other.data[i + other.l_additional];
this->count = other.count;
return *this;
}
template<typename T>
DynamicArray<T>& DynamicArray<T>::operator=(DynamicArray<T>&& other)
{
if (this == &other)
return *this;
delete[] this->data;
this->data = other.data;
other.data = nullptr;
this->l_additional = other.l_additional;
this->r_additional = other.r_additional;
this->count = other.count;
return *this;
}
template<typename T>
std::optional<T>& DynamicArray<T>::operator[](size_t index)
{
if(index >= this->count)
throw std::exception("Invalid index");
return this->data[index + this->l_additional];
}
template<typename T>
const std::optional<T>& DynamicArray<T>::operator[](size_t index) const
{
if (index >= this->count)
throw std::exception("Invalid index");
return this->data[index + this->l_additional];
}
template<typename T>
std::optional<T>& DynamicArray<T>::Front()
{
if (this->count == 0)
throw std::exception("Array is empty");
return this->data[this->l_additional];
}
template<typename T>
std::optional<T>& DynamicArray<T>::Back()
{
if (this->count == 0)
throw std::exception("Array is empty");
return this->data[this->l_additional+this->count];
}
template<typename T>
std::optional<T> DynamicArray<T>::Front() const
{
if (this->count == 0)
throw std::exception("Array is empty");
return this->data[this->l_additional];
}
template<typename T>
inline std::optional<T> DynamicArray<T>::Back() const
{
if (this->count == 0)
throw std::exception("Array is empty");
return this->data[this->l_additional + this->count];
}
template<typename T>
std::optional<T>* DynamicArray<T>::Data()
{
if (this->count == 0)
throw std::exception("Array is empty");
return this->data+this->l_additional;
}