-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdvector.h
174 lines (153 loc) · 3.41 KB
/
dvector.h
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
///////////////////////////////////////////////////////////////////
// Copyright (c) 2019 Rohit Sharma. All rights reserved.
// This program is free software; you can redistribute it and/or
// modify it under the terms as GNU General Public License.
///////////////////////////////////////////////////////////////////
//
// Generic dvector class for efficiency.
#include <assert.h>
#include <stdlib.h> /* malloc, free, rand */
#pragma once
#define VECTOR_INIT_SIZE 12
// Ref: https://stackoverflow.com/questions/5232198/about-vectors-growth
#define VECTOR_GROWTH_FACTOR 1.5
template <class T>
class dvector {
typedef size_t Index;
protected:
T* _m_data;
size_t _sz;
size_t _capacity;
static T NULL_DATA;
void stretch_capacity()
{
_capacity = static_cast<size_t>(VECTOR_GROWTH_FACTOR * _capacity);
_m_data = static_cast<T*>(realloc(_m_data, _capacity));
assert(_m_data);
}
// move data values from 'index' to end by n away from start.
void move_right(Index index, size_t n)
{
if (index < 0 || index >= _sz) return; // bad index
while (_sz + n >= _capacity)
stretch_capacity();
for (Index i = _sz + n - 1; i > index + n - 1; i--)
_m_data[i] = _m_data[i - 1];
_sz = _sz + n;
}
// move data values from 'index' to end by n towards start.
void move_left(Index index, size_t n)
{
if (index < 0 || index >= _sz) return; // bad index
if (index + n >= _sz) {
_sz = index;
return;
}
for (Index i = index; i < _sz; i++)
_m_data[i] = _m_data[i + n];
_sz = _sz - n;
}
public:
// These selected vector methods are inspired from STL C++ vector template
// default constructor
dvector(size_t max_sz = VECTOR_INIT_SIZE)
{
_sz = 0;
_capacity = max_sz;
if (_capacity > 0) {
_m_data = static_cast<T*>(malloc(_capacity * sizeof(T)));
assert(_m_data);
}
}
// copy constructor
dvector(const dvector& other)
{
_sz = other._sz;
_capacity = other._capacity;
_m_data = static_cast<T*>(malloc(_capacity * sizeof(T)));
assert(_m_data);
for (Index i = 0; i < _sz; i++)
_m_data[i] = other._m_data[i];
}
// assignment operator
dvector& operator=(const dvector& other)
{
if (this != other) {
if (_capacity < other._capacity) {
_m_data = static_cast<T*>(realloc(_m_data, other._capacity));
assert(_m_data);
_capacity = other._capacity;
}
for (Index i = 0; i < other._sz; i++)
_m_data[i] = other._m_data[i];
_sz = other._sz;
}
return *this;
}
// destructor
~dvector()
{
if (_m_data)
free(_m_data);
}
short dimension()
{
return 1;
}
// unsafe
T& operator[](const Index& index) const
{
return _m_data[index];
}
void clear()
{
_sz = 0;
}
size_t size()
{
return _sz;
}
bool empty()
{
return _sz == 0;
}
void push_back(const T& data)
{
if (_sz == _capacity)
stretch_capacity();
_m_data[_sz++] = data;
}
void pop_back()
{
_sz = (_sz > 0) ? --_sz : _sz;
}
T& back()
{
if (_sz > 0)
return _m_data[_sz - 1];
assert(false);
return NULL_DATA; // return reference on stack? unsafe TODOs: use smart_ptrs
}
void insert(size_t index, const T& data)
{
move_right(index, 1);
_m_data[index] = data;
}
// erase 'n' element starting from 'index'
void erase(size_t index, size_t n)
{
move_left(index, n);
}
// linear search
int find(const T& data)
{
for (Index i = 0; i < _sz; i++)
if (_m_data[i] == data)
return i;
return -1;
}
bool exists(const T& data)
{
return (find(data) > 0);
}
};