-
Notifications
You must be signed in to change notification settings - Fork 0
/
Iterator.cpp
322 lines (287 loc) · 6.46 KB
/
Iterator.cpp
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
//Iterator pattern
#include <stdexcept>
#include <iostream>
#define DEFAULT_LIST_CAPACITY 1000
template <class Item> class List
{
public:
List(long size = DEFAULT_LIST_CAPACITY);
List(List&);
~List();
List& operator=(const List&);
long Count() const;
Item& Get(long index) const;
Item& First() const;
Item& Last() const;
bool Includes(const Item&);
void Append(const Item&);
void Prepend(const Item&);
void Remove(const Item&);
void RemoveLast();
void RemoveFirst();
void RemoveAll();
Item& Top() const;
void Push(const Item&);
Item& Pop();
private:
Item* array;
long counter;
};
template <class Item> List<Item>::List(long size)
{
array = new Item(size);
counter = 0;
}
template <class Item> List<Item>::~List()
{
delete[] array;
}
template <class Item> long List<Item>::Count() const
{
return counter;
}
template <class Item> Item& List<Item>::Get(long index) const
{
if (index > counter - 1 || index < 0)
{
throw std::runtime_error("ERROR: out of bound in list!");
}
return array[index];
}
template <class Item> Item& List<Item>::First() const
{
return array[0];
}
template <class Item> Item& List<Item>::Last() const
{
return array[counter - 1];
}
template <class Item> bool List<Item>::Includes(const Item& it)
{
for (long i = 0; i < counter; i++)
{
if (array[i] == it)
{
return true;
}
}
return false;
}
template <class Item> void List<Item>::Append(const Item& it)
{
array[counter] = it;
counter++;
}
template <class Item> void List<Item>::Prepend(const Item& it)
{
for (long i = counter; i > 0; i--)
{
array[i] = array[i - 1];
}
array[0] = it;
counter++;
}
template <class Item> void List<Item>::RemoveFirst()
{
for (long i = 0; i < counter; i++)
{
array[i] = array[i + 1];
}
array[counter - 1] = 0;
counter--;
}
template <class Item> void List<Item>::RemoveLast()
{
array[counter - 1] = 0;
counter--;
}
template <class Item> void List<Item>::Remove(const Item& toRemove)
{
for (long i = 0; i < counter; i++)
{
if (array[i] == toRemove && i == 0)
{
RemoveFirst();
break;
}
else if (array[i] == toRemove && i == counter - 1)
{
RemoveLast();
break;
}
else if (array[i] == toRemove)
{
for (long j = i; j < counter; j++)
{
array[j] = array[j + 1];
}
counter--;
break;
}
}
}
template <class Item> void List<Item>::RemoveAll()
{
delete[] array;
array = new Item(DEFAULT_LIST_CAPACITY);
counter = 0;
}
template <class Item> class Iterator
{
public:
virtual void First() = 0;
virtual void Next() = 0;
virtual bool IsDone() const = 0;
virtual Item CurrentItem() const = 0;
protected:
Iterator() = default;
};
template <class Item> class ListIterator: public Iterator<Item>
{
public:
ListIterator(const List<Item>* aList): _list(aList), _current(0) {}
virtual void First()
{
_current = 0;
}
virtual void Next()
{
_current++;
}
virtual bool IsDone() const
{
return _current >= _list->Count() - 1;
}
virtual Item CurrentItem() const
{
if (_current > _list->Count())
{
throw std::runtime_error("ERROR: Iterator out of bounds!");
}
return _list->Get(_current);
}
private:
const List<Item>* _list;
long _current;
};
template <class Item> class ReverseListIterator: public Iterator<Item>
{
public:
ReverseListIterator(const List<Item>* aList)
{
_list = aList;
First();
}
virtual void First()
{
_current = _list->Count() - 1;
}
virtual void Next()
{
_current--;
}
virtual bool IsDone() const
{
return _current < 0;
}
virtual Item CurrentItem() const
{
if (_current < 0)
{
throw std::runtime_error("ERROR: Iterator out of bounds!");
}
return _list->Get(_current);
}
private:
const List<Item>* _list;
long _current;
};
template <class Item> void printList(const List<Item>& aList)
{
if (aList.Count() == 0)
{
std::cout << "List is empty!" << std::endl;
return;
}
for (size_t i = 0; i < aList.Count(); i++)
{
std::cout << aList.Get(i) << " ";
}
std::cout << std::endl;
}
void testList()
{
List<int> indexes;
for (long i = 9; i > 4; i--)
{
indexes.Append(i);
}
printList(indexes);
std::cout << "Insert in begin of the List:" << std::endl;
indexes.Prepend(0);
printList(indexes);
std::cout << "Remove from begin of the List:" << std::endl;
indexes.RemoveFirst();
printList(indexes);
std::cout << "Remove from the end of List:" << std::endl;
indexes.RemoveLast();
printList(indexes);
std::cout << "Remove item (7) from List:" << std::endl;
indexes.Remove(7);
printList(indexes);
std::cout << "Remove all from List:" << std::endl;
indexes.RemoveAll();
printList(indexes);
std::cout << "Again fill List:" << std::endl;
for (long i = 9; i > 4; i--)
{
indexes.Append(i);
}
printList(indexes);
}
void testIterator()
{
std::cout << "Test iterator:" << std::endl;
List<int>* indexes = new List<int>;
for (long i = 9; i > 4; i--)
{
indexes->Append(i);
}
printList(*indexes);
ListIterator<int> it(indexes);
std::cout << it.CurrentItem() << "\n";
std::cout << "Status is done: " << it.IsDone() << "\n";
while (true)
{
if (it.IsDone())
{
break;
}
it.Next();
}
std::cout << "Status is done: " << it.IsDone() << ", current Item is: " << it.CurrentItem() << "\n";
delete indexes;
}
void testReverseIterator()
{
std::cout << "Test reverse iterator:" << std::endl;
List<int>* indexes = new List<int>;
for (long i = 9; i > 4; i--)
{
indexes->Append(i);
}
ReverseListIterator<int> it(indexes);
std::cout << "Status is done: " << it.IsDone() << "\n";
for(; !it.IsDone(); it.Next())
{
std::cout << it.CurrentItem() << " ";
}
std::cout << std::endl << "Status is done: " << it.IsDone() << "\n";
delete indexes;
}
int main()
{
testList();
testIterator();
testReverseIterator();
}