-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.hpp
More file actions
454 lines (378 loc) · 11.2 KB
/
map.hpp
File metadata and controls
454 lines (378 loc) · 11.2 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
#ifndef MAP_HPP
#define MAP_HPP
#define BLACK 0
#define RED 1
# include "ft_containers.hpp"
# include "pair.hpp"
# include "Iterator.hpp"
# include "reverse_iterator.hpp"
# include "nullptr.hpp"
# include "iterator_map.hpp"
# include "red_black_tree.hpp"
# include "lexicographical_compare.hpp"
# include "enable_if.hpp"
# include "is_integral.hpp"
# include "lexicographical_compare.hpp"
# include <iostream>
# include <functional>
NAME_SPACE_START
template <class Key, class T, class Compare = std::less<Key>,
class Allocator = std::allocator<ft::pair<const Key, T> > >
class map
{
// =============================================================================
// TYPEDEF =====================================================================
public:
typedef ft::pair<const Key, T> value_type;
typedef Compare key_compare;
//! ================================================================================
// CLASS VALUE COMPARE ============================================================
// Returns a comparison object that can be used to compare two elements to get whether the key of the first one goes before the second.
class value_compare : public std::binary_function<value_type,value_type,bool>
{
friend class map;
protected:
key_compare comp;
value_compare(key_compare c) : comp(c) {}
public:
bool
operator() (const value_type & x, const value_type & y) const
{
return (comp(x.first, y.first));
}
};
//! ================================================================================
// =============================================================================
// TYPEDEF =====================================================================
public:
typedef Key key_type;
typedef T mapped_type;
typedef std::size_t size_type;
typedef std::ptrdiff_t difference_type;
typedef typename ft::RedBlackTree<value_type, value_compare> red_black_tree;
typedef Allocator allocator_type;
typedef value_type & reference;
typedef const value_type & const_reference;
typedef typename Allocator::pointer pointer;
typedef typename Allocator::const_pointer const_pointer;
typedef typename ft::iterator_map<value_type, Node<value_type> > iterator;
typedef typename ft::iterator_map<const value_type, Node<value_type> > const_iterator;
typedef typename ft::reverse_iterator<iterator> reverse_iterator;
typedef typename ft::reverse_iterator<const_iterator> const_reverse_iterator;
// =============================================================================
// ATTRIBUTS ===================================================================
protected:
allocator_type _alloc;
value_compare _comp;
red_black_tree _rbt;
size_t _size;
// =============================================================================
// CONSTRUCTORS ================================================================
// Allocate return a pointer to the initial element in the block of storage
public:
explicit
map(const key_compare &comp = key_compare(), const Allocator &alloc = allocator_type())
: _alloc(alloc), _comp(value_compare(comp)), _rbt(_comp), _size(0)
{}
template <class InputIterator>
map(InputIterator first, InputIterator last,
const key_compare &comp = key_compare(),
const allocator_type &alloc = allocator_type())
: _alloc(alloc), _comp(value_compare(comp)), _rbt(_comp), _size(0)
{
insert(first, last);
}
map(const map & copy)
: _alloc(copy._alloc), _comp(copy._comp), _rbt(_comp), _size(copy._size)
{
*this = copy;
}
// =============================================================================
// DESTRUCTORS =================================================================
~map()
{
if (_size != 0)
_rbt.delete_tree();
_rbt.destroy_tnull();
}
// =============================================================================
// OVERLOADS ===================================================================
public:
map&
operator=(const map& x)
{
if (this == &x)
return (*this);
_comp = x._comp;
_alloc = x._alloc;
_rbt.delete_tree();
insert(x.begin(), x.end());
_size = x._size;
return (*this);
}
// =============================================================================
// ITERATORS ===================================================================
iterator
begin()
{
return (iterator(_rbt.begin(), _rbt.get_root(), _rbt.get_tnull()));
}
const_iterator
begin() const
{
return (const_iterator(_rbt.begin(), _rbt.get_root(), _rbt.get_tnull()));
}
iterator
end()
{
return (iterator(_rbt.get_tnull(), _rbt.get_root(), _rbt.get_tnull()));
}
const_iterator
end() const
{
return (const_iterator(_rbt.get_tnull(), _rbt.get_root(), _rbt.get_tnull()));
}
reverse_iterator
rbegin()
{
return (reverse_iterator(end()));
}
const_reverse_iterator
rbegin() const
{
return (const_reverse_iterator(end()));
}
reverse_iterator
rend()
{
return (reverse_iterator(begin()));
}
const_reverse_iterator
rend() const
{
return (const_reverse_iterator(begin()));
}
// =============================================================================
// CAPACITY ====================================================================
size_type
size() const
{
return (_size);
}
bool
empty() const
{
return (_rbt.empty());
}
size_type
max_size() const
{
return (_rbt.max_size());
}
// =============================================================================
// ELEMENTS ACCESS =============================================================
mapped_type &
operator[](const key_type & k)
{
iterator it = find(k);
if (it == end())
{
insert(value_type(k, mapped_type()));
it = find(k);
}
return (it->second);
}
mapped_type&
at (const key_type& k)
{
iterator it = find(k);
if (it == end())
throw std::out_of_range("map::at\n");
return (it->second);
}
const mapped_type&
at (const key_type& k) const
{
const_iterator it = find(k);
if (it == end())
throw std::out_of_range("map::at\n");
return (it->second);
}
// =============================================================================
// OPERATIONS ==================================================================
iterator
find(const key_type & k)
{
return(iterator(_rbt.find(_rbt.get_root(),value_type(k, mapped_type())), _rbt.get_root(), _rbt.get_tnull()));
}
const_iterator
find(const key_type & k) const
{
return(const_iterator(_rbt.find(_rbt.get_root(),value_type(k, mapped_type())), _rbt.get_root(), _rbt.get_tnull()));
}
size_type
count(const key_type& k) const
{
const_iterator it = find(k);
if (it == end())
return (0);
return (1);
}
iterator
lower_bound (const key_type& k)
{
return (iterator(_rbt.lower_bound_rbt(value_type(k, mapped_type())), _rbt.get_root(), _rbt.get_tnull()));
}
const_iterator
lower_bound (const key_type& k) const
{
return (const_iterator(_rbt.lower_bound_rbt(value_type(k, mapped_type())), _rbt.get_root(), _rbt.get_tnull()));
}
iterator
upper_bound (const key_type& k)
{
return (iterator(_rbt.upper_bound_rbt(value_type(k, mapped_type())), _rbt.get_root(), _rbt.get_tnull()));
}
const_iterator
upper_bound (const key_type& k) const
{
return (const_iterator(_rbt.upper_bound_rbt(value_type(k, mapped_type())), _rbt.get_root(), _rbt.get_tnull()));
}
ft::pair<const_iterator,const_iterator>
equal_range (const key_type& k) const
{
return (ft::make_pair(lower_bound(k), upper_bound(k)));
}
ft::pair<iterator,iterator>
equal_range (const key_type& k)
{
return (ft::make_pair(lower_bound(k), upper_bound(k)));
}
// =============================================================================
// MODIFIERS ===================================================================
// The single element versions (1) return a pair, with its member pair::first set to an iterator pointing to either the newly inserted element or to the element with an equivalent key in the map. The pair::second element in the pair is set to true if a new element was inserted or false if an equivalent key already existed.
ft::pair<iterator, bool>
insert(const value_type &data)
{
if (_rbt.insert(data) == _nullptr)
return(ft::make_pair(iterator(_rbt.find(_rbt.get_root(), data), _rbt.get_root(), _rbt.get_tnull()), false));
_size++;
return (ft::make_pair(iterator(_rbt.find(_rbt.get_root(), data), _rbt.get_root(), _rbt.get_tnull()), true));
}
// The versions with a hint (2) return an iterator pointing to either the newly inserted element or to the element that already had an equivalent key in the map.
iterator
insert (iterator position, const value_type& val)
{
(void)position;
insert(val);
return (iterator(_rbt.find(_rbt.get_root(), val), _rbt.get_root(), _rbt.get_tnull()));
}
template <class InputIterator>
void
insert (InputIterator first, InputIterator last)
{
while (first != last)
{
insert(*first);
first++;
}
}
void
erase (iterator position)
{
if (_size == 0)
return ;
if (_rbt.deleteNode(*position))
_size--;
}
size_type
erase (const key_type& k)
{
if (_size == 0)
return (0);
iterator it = find(k);
if (it == end())
return (0);
erase(it);
return (1);
}
void
erase (iterator first, iterator last)
{
for (; first != last; _size--)
_rbt.deleteNode(*(first++));
}
void
clear()
{
if (_size != 0)
_rbt.delete_tree();
_size = 0;
}
private:
template <class U>
void _swap ( U& a, U& b )
{
U tmp = a;
a = b;
b = tmp;
}
public:
void swap (map& x)
{
size_t tmp = x._size;
x._size = _size;
_size = tmp;
_swap(_rbt, x._rbt);
}
// =============================================================================
// GETTERS =====================================================================
key_compare
key_comp() const
{
return (key_compare());
}
value_compare
value_comp() const
{
return (_comp);
}
};
template <class Key, class T, class Compare, class Alloc>
void
swap(ft::map<Key, T, Compare, Alloc>& x, ft::map<Key, T, Compare, Alloc>& y)
{
x.swap(y);
}
template <class Key, class T, class Compare, class Alloc>
bool operator==(const ft::map<Key, T, Compare, Alloc>& lhs, const ft::map<Key, T, Compare, Alloc>& rhs)
{
return (!(lhs < rhs) && !(lhs > rhs));
}
template <class Key, class T, class Compare, class Alloc>
bool operator!=(const ft::map<Key, T, Compare, Alloc>& lhs, const ft::map<Key, T, Compare, Alloc>& rhs)
{
return (!(lhs == rhs));
}
template <class Key, class T, class Compare, class Alloc>
bool operator<(const ft::map<Key, T, Compare, Alloc>& lhs, const ft::map<Key, T, Compare, Alloc>& rhs)
{
return (ft::lexicographical_compare(lhs.begin(), lhs.end(), rhs.begin(), rhs.end()));
}
template <class Key, class T, class Compare, class Alloc>
bool operator<=(const ft::map<Key, T, Compare, Alloc>& lhs, const ft::map<Key, T, Compare, Alloc>& rhs)
{
return (!(rhs < lhs));
}
template <class Key, class T, class Compare, class Alloc>
bool operator>(const ft::map<Key, T, Compare, Alloc>& lhs, const ft::map<Key, T, Compare, Alloc>& rhs)
{
return (rhs < lhs);
}
template <class Key, class T, class Compare, class Alloc>
bool operator>=(const ft::map<Key, T, Compare, Alloc>& lhs, const ft::map<Key, T, Compare, Alloc>& rhs)
{
return (!(lhs < rhs));
}
NAME_SPACE_END
#endif