-
Notifications
You must be signed in to change notification settings - Fork 199
/
Copy pathSet.h
223 lines (193 loc) · 6.45 KB
/
Set.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
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
#pragma once
//------------------------------------------------------------------------------
/**
@class Oryol::Set
@ingroup Core
@brief a sorted, dynamic array of values
The Set class provides a dynamic array of binary-sorted values similar
to the std::set class.
@see Array, ArrayMap, Map
*/
#include <algorithm>
#include "Core/Containers/Array.h"
namespace Oryol {
template<class VALUE> class Set {
public:
/// default constructor
Set();
/// copy constructor (truncates to actual size)
Set(const Set& rhs);
/// move constructor (same capacity and size)
Set(Set&& rhs);
/// copy-assignment operator (truncates to actual size)
void operator=(const Set& rhs);
/// move-assignment operator (same capacity and size)
void operator=(Set&& rhs);
/// set allocation strategy
void SetAllocStrategy(int minGrow, int maxGrow=ORYOL_CONTAINER_DEFAULT_MAX_GROW);
/// get min grow value
int GetMinGrow() const;
/// get max grow value
int GetMaxGrow() const;
/// get number of elements in array
int Size() const;
/// return true if empty
bool Empty() const;
/// get capacity of array
int Capacity() const;
/// clear the array (deletes elements, keeps capacity)
void Clear();
/// test if an element exists
bool Contains(const VALUE& val) const;
/// find element
const VALUE* Find(const VALUE& val) const;
/// add element
void Add(const VALUE& val);
/// erase element
void Erase(const VALUE& val);
/// get value at index
const VALUE& ValueAtIndex(int index) const;
/// C++ conform begin
VALUE* begin();
/// C++ conform begin
const VALUE* begin() const;
/// C++ conform end
VALUE* end();
/// C++ conform end
const VALUE* end() const;
private:
Array<VALUE> valueArray;
};
//------------------------------------------------------------------------------
template<class VALUE>
Set<VALUE>::Set() {
// empty
}
//------------------------------------------------------------------------------
template<class VALUE>
Set<VALUE>::Set(const Set& rhs) :
valueArray(rhs.valueArray) {
// empty
}
//------------------------------------------------------------------------------
template<class VALUE>
Set<VALUE>::Set(Set&& rhs) :
valueArray(std::move(rhs.valueArray)) {
// empty
}
//------------------------------------------------------------------------------
template<class VALUE> void
Set<VALUE>::operator=(const Set& rhs) {
if (&rhs != this) {
this->valueArray = rhs.valueArray;
}
}
//------------------------------------------------------------------------------
template<class VALUE> void
Set<VALUE>::operator=(Set&& rhs) {
if (&rhs != this) {
this->valueArray = std::move(rhs.valueArray);
}
}
//------------------------------------------------------------------------------
template<class VALUE> void
Set<VALUE>::SetAllocStrategy(int minGrow, int maxGrow) {
this->valueArray.SetAllocStrategy(minGrow, maxGrow);
}
//------------------------------------------------------------------------------
template<class VALUE> int
Set<VALUE>::GetMinGrow() const {
return this->valueArray.GetMinGrow();
}
//------------------------------------------------------------------------------
template<class VALUE> int
Set<VALUE>::GetMaxGrow() const {
return this->valueArray.GetMaxGrow();
}
//------------------------------------------------------------------------------
template<class VALUE> int
Set<VALUE>::Size() const {
return this->valueArray.Size();
}
//------------------------------------------------------------------------------
template<class VALUE> bool
Set<VALUE>::Empty() const {
return this->valueArray.Empty();
}
//------------------------------------------------------------------------------
template<class VALUE> int
Set<VALUE>::Capacity() const {
return this->valueArray.Capacity();
}
//------------------------------------------------------------------------------
template<class VALUE> void
Set<VALUE>::Clear() {
this->valueArray.Clear();
}
//------------------------------------------------------------------------------
template<class VALUE> bool
Set<VALUE>::Contains(const VALUE& val) const {
return std::binary_search(this->valueArray.begin(), this->valueArray.end(), val);
}
//------------------------------------------------------------------------------
template<class VALUE> const VALUE*
Set<VALUE>::Find(const VALUE& val) const {
const VALUE* ptr = std::lower_bound(this->valueArray.begin(), this->valueArray.end(), val);
if (ptr != this->valueArray.end() && val == *ptr) {
return ptr;
}
else {
return nullptr;
}
}
//------------------------------------------------------------------------------
template<class VALUE> void
Set<VALUE>::Add(const VALUE& val) {
const VALUE* begin = this->valueArray.begin();
const VALUE* end = this->valueArray.end();
const VALUE* ptr = std::lower_bound(begin, end, val);
if ((ptr != end) && (*ptr == val)) {
o_error("Trying to insert duplicate element!\n");
}
else {
int index = int(ptr - begin);
this->valueArray.Insert(index, val);
}
}
//------------------------------------------------------------------------------
template<class VALUE> void
Set<VALUE>::Erase(const VALUE& val) {
const VALUE* begin = this->valueArray.begin();
const VALUE* end = this->valueArray.end();
const VALUE* ptr = std::lower_bound(begin, end, val);
if (ptr != end) {
int index = int(ptr - begin);
this->valueArray.Erase(index);
}
}
//------------------------------------------------------------------------------
template<class VALUE> const VALUE&
Set<VALUE>::ValueAtIndex(int index) const {
return this->valueArray[index];
};
//------------------------------------------------------------------------------
template<class VALUE> VALUE*
Set<VALUE>::begin() {
return this->valueArray.begin();
}
//------------------------------------------------------------------------------
template<class VALUE> const VALUE*
Set<VALUE>::begin() const {
return this->valueArray.begin();
}
//------------------------------------------------------------------------------
template<class VALUE> VALUE*
Set<VALUE>::end() {
return this->valueArray.end();
}
//------------------------------------------------------------------------------
template<class VALUE> const VALUE*
Set<VALUE>::end() const {
return this->valueArray.end();
}
} // namespace Oryol