-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy_vector_iterator.hpp
More file actions
219 lines (181 loc) · 5.12 KB
/
Copy pathmy_vector_iterator.hpp
File metadata and controls
219 lines (181 loc) · 5.12 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
#pragma once
#ifndef my_vector_iterator_hpp
#define my_vector_iterator_hpp
#include <my_vector_help.hpp>
/**/
#include <iterator>
/**/
my_vector_namespace_begin
template <typename Vector>
class vector_const_iterator
{
private:
using _address = typename Vector ::pointer;
public:
using iterator_category = std::random_access_iterator_tag;
using value_type = typename Vector::value_type;
using difference_type = typename Vector::difference_type;
using pointer = typename Vector::const_pointer;
using reference = const value_type &;
private:
_address element_pointer;
public:
vector_const_iterator(_address ptr) : element_pointer(ptr){};
public:
[[nodiscard]] reference operator*() const
{
return *element_pointer;
}
[[nodiscard]] _address operator->() const
{
return element_pointer;
}
vector_const_iterator &operator++()
{
++element_pointer;
return *this;
}
vector_const_iterator &operator++(int)
{
vector_const_iterator _temp = *this;
++element_pointer;
return _temp;
}
vector_const_iterator &operator--()
{
--element_pointer;
return *this;
}
vector_const_iterator &operator--(int)
{
vector_const_iterator _temp = *this;
--element_pointer;
return _temp;
}
vector_const_iterator &operator+=(const difference_type n)
{
element_pointer += n;
return *this;
}
[[nodiscard]] vector_const_iterator operator+(const difference_type n) const
{
vector_const_iterator _temp = *this;
return _temp += n;
}
vector_const_iterator &operator-=(const difference_type n)
{
element_pointer -= n;
return *this;
}
[[nodiscard]] vector_const_iterator operator-(const difference_type n) const
{
vector_const_iterator _temp = *this;
return _temp -= n;
}
[[nodiscard]] difference_type operator-(const vector_const_iterator &left) const
{
return element_pointer - left.element_pointer;
}
[[nodiscard]] reference operator[](const difference_type n) const
{
return *(*this + n);
}
[[nodiscard]] bool operator==(const vector_const_iterator &other) const
{
return element_pointer == other.element_pointer;
}
[[nodiscard]] bool operator!=(const vector_const_iterator &other) const
{
return element_pointer != other.element_pointer;
}
[[nodiscard]] bool operator<(const vector_const_iterator &other) const
{
return element_pointer < other.element_pointer;
}
[[nodiscard]] bool operator>(const vector_const_iterator &other) const
{
return element_pointer > other.element_pointer;
}
[[nodiscard]] bool operator>=(const vector_const_iterator &other) const
{
return element_pointer >= other.element_pointer;
}
[[nodiscard]] bool operator<=(const vector_const_iterator &other) const
{
return element_pointer <= other.element_pointer;
}
};
template <typename Vector>
class vector_iterator : public vector_const_iterator<Vector>
{
private:
using const_iterator = vector_const_iterator<Vector>;
using const_iterator::const_iterator;
public:
using iterator_category = std::random_access_iterator_tag;
using value_type = typename Vector::value_type;
using difference_type = typename Vector::difference_type;
using pointer = typename Vector::pointer;
using reference = value_type &;
public:
[[nodiscard]] reference operator*() const
{
return const_cast<reference>(const_iterator::operator*());
}
[[nodiscard]] pointer operator->() const
{
return const_iterator::operator->();
}
vector_iterator &operator++()
{
const_iterator::operator++();
return *this;
}
vector_iterator &operator++(int)
{
vector_iterator _temp = *this;
const_iterator::operator++();
return _temp;
}
vector_iterator &operator--()
{
const_iterator::operator--();
return *this;
}
vector_iterator &operator--(int)
{
vector_iterator _temp = *this;
const_iterator::operator--();
return _temp;
}
vector_iterator &operator+=(const difference_type n)
{
const_iterator::operator+=(n);
return *this;
}
[[nodiscard]] vector_iterator operator+(const difference_type n) const
{
vector_iterator _temp = *this;
return _temp += n;
}
vector_iterator &operator-=(const difference_type n)
{
const_iterator::operator-=(n);
return *this;
}
[[nodiscard]] vector_iterator operator-(const difference_type n) const
{
vector_iterator _temp = *this;
return _temp -= n;
}
[[nodiscard]] difference_type operator-(const vector_iterator &other) const
{
return const_iterator::operator-(other);
}
[[nodiscard]] reference operator[](const difference_type n) const
{
return const_cast<reference>(const_iterator::operator[](n));
}
};
my_vector_namespace_end
#endif //my_vector_iterator_hpp