Vector (Dynamic Array)
The simple idea of dynamic array is the ability to resize itself when inserting new elements to avoid overflow.
How we can extend the array (make it grows)?
- Create an initial size capacity for the array.
- When number of elements n exceeds capacity, make a new array of size 2*capacity, move old array elements to the new one and deallocate the old array’s memory.
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
template <typename E>
class ArrayVector
{
public:
ArrayVector()
{
capacity = n = 0;
arr = NULL;
}
int size() const
{
return n;
}
bool empty() const
{
return size() == 0;
}
E &operator[](int idx)
{
return arr[idx];
}
E &at(int idx)
{ // just like [] but with boundary protection
if (idx < 0 || idx >= n)
{
throw runtime_error("Illegal index in function at()");
}
return arr[idx];
}
void erase(int idx)
{
for (int i = idx + 1; i < n; i++)
{
arr[i - 1] = arr[i];
}
n--;
}
void insert(int idx, const E &e) // inserted element will be at idx
{
if (n >= capacity)
{
reserve(max(1, 2 * capacity)); // 1 because capacity will be initially 0
}
for (int i = n - 1; i >= idx; i--)
{
arr[i + 1] = arr[i];
}
arr[idx] = e;
n++;
}
void reserve(int N)
{
if(capacity >= N) return;
E* newArray = new E[N];
for(int i = 0; i < n; i++){
newArray[i] = arr[i];
}
if(arr != NULL) delete [] arr;
arr = newArray;
capacity = N;
}
private:
E *arr;
int capacity; // current array size
int n; // number of elements
};
This post is licensed under CC BY 4.0 by the author.