-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bi_Iterator.hpp
213 lines (182 loc) · 7.87 KB
/
Bi_Iterator.hpp
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
#pragma once
# include <iostream>
# include "pair.hpp"
# include "miscellaneous.hpp"
# include "tree.hpp"
namespace ft {
template < class Key, // map::key_type
class T, // map::mapped_type
class Compare = std::less<Key>, // map::key_compare
class Alloc = std::allocator<pair< const Key,T> > >
class mapiterator {
public:
typedef typename iterator<std::random_access_iterator_tag, pair< const Key, T> >::difference_type difference_type;
typedef typename iterator<std::random_access_iterator_tag, pair< const Key, T> >::value_type value_type;
typedef typename iterator<std::random_access_iterator_tag, pair< const Key, T> >::pointer pointer;
typedef typename iterator<std::random_access_iterator_tag, pair< const Key, T> >::reference reference;
typedef typename iterator<std::random_access_iterator_tag, pair< const Key, T> >::iterator_category iterator_category;
Alloc _allocator;
typedef pair< const Key, T> pair;
typedef node< Key, T> node;
operator mapiterator<Key, T> () const { return mapiterator<Key, T> (); }
mapiterator()
{
_current = nullptr; currentData = nullptr;
_safe = _allocator.allocate(1);
_allocator.construct(_safe, pair(Key(), T()));
_root = nullptr;
}
mapiterator( node * root, node * current )
{
_safe = _allocator.allocate(1);
_allocator.construct(_safe, pair(Key(), T()));
if (current == nullptr)
{
currentData = nullptr;
}
else
{
currentData = current->data;
}
_current = current;
_root = root;
}
mapiterator( const mapiterator& obj )
{
_current = obj._current;
currentData = obj.currentData;
_root = obj._root;
_safe = _allocator.allocate(1);
_allocator.construct(_safe, *obj._safe);
}
mapiterator &operator=(const mapiterator& obj )
{
_current = obj._current;
currentData = obj.currentData;
_root = obj._root;
_safe = _allocator.allocate(1);
_allocator.construct(_safe, *obj._safe);
return *this;
}
~mapiterator()
{
_allocator.destroy(_safe);
_allocator.deallocate(_safe, 1);
}
node *treeMaximum(node *x) const
{
if (x == nullptr)
return nullptr;
while (x->right != nullptr)
x = x->right;
return x;
}
node *treeMinimum(node *x)
{
if (x == nullptr)
return nullptr;
while (x->left != nullptr)
x = x->left;
return x;
}
node *treeSuccessor(node *x)
{
if (x == nullptr)
return x;
if (x->right != nullptr)
return treeMinimum(x->right);
node *y = x->parent;
while (y != nullptr && (x == y->right))
{
x = y;
y = y->parent;
}
return y;
}
node *treePredecessor(node *x)
{
if (x == nullptr)
return x;
if (x->left != nullptr)
return treeMaximum(x->left);
node *y = x->parent;
while (y != nullptr && (x == y->left)) {
x = y;
y = y->parent;
}
return y;
}
pair& operator*() const { if (_current == nullptr) { return *(_safe);} return *_current->data;}
pair* operator->() const { if (_current == nullptr) { return _safe;} return _current->data;}
mapiterator& operator+= ( difference_type rhs ) { for (difference_type it = rhs; it >= 1; it--) { (*this)++;} return *this; };
mapiterator& operator-= ( difference_type rhs ) { for (difference_type it = rhs; it >= 1; it--) { (*this)--;} return *this; };
mapiterator& operator--()
{
if (_root != nullptr && _current == nullptr && currentData == nullptr)
{
_current = treeMaximum(_root);
currentData = _current->data;
return *this;
}
_current = treePredecessor(_current);
if (_current != nullptr)
currentData = _current->data;
else
currentData = nullptr;
return *this;
}
mapiterator operator++(int)
{
if (_root != nullptr && _current == nullptr && currentData == nullptr)
{
_current = treeMinimum(_root);
currentData = _current->data;
return *this;
}
mapiterator tmp(*this);
_current = treeSuccessor(_current);
if (_current != nullptr)
currentData = _current->data;
else
currentData = nullptr;
return tmp;
}
mapiterator& operator++()
{
if (_root != nullptr && _current == nullptr && currentData == nullptr)
{
_current = treeMinimum(_root);
currentData = _current->data;
return *this;
}
_current = treeSuccessor(_current);
if (_current != nullptr)
currentData = _current->data;
else
currentData = nullptr;
return *this;
}
mapiterator operator--(int)
{
mapiterator tmp(*this);
if (_root != nullptr && _current == nullptr && currentData == nullptr)
{
_current = treeMaximum(_root);
currentData = _current->data;
return *this;
}
_current = treePredecessor(_current);
if (_current != nullptr)
currentData = _current->data;
else
tmp.currentData = nullptr;
return tmp;
}
node * _current;
pair * currentData;
pair * _safe;
node * _root;
bool operator==(const mapiterator& rhs) const {if (_current && rhs._current) {return _current->data == rhs._current->data;} return (currentData == rhs.currentData);}
bool operator!=(const mapiterator& rhs) const {if (_current && rhs._current) {return _current->data != rhs._current->data;} return (currentData != rhs.currentData);}
};
}