-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvector.h
More file actions
79 lines (59 loc) · 1.86 KB
/
Copy pathvector.h
File metadata and controls
79 lines (59 loc) · 1.86 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
#pragma once
#include <compare>
#include <cstddef>
#include <cstdlib>
#include <initializer_list>
class Vector {
public:
using ValueType = int;
using SizeType = size_t;
using DifferenceType = ptrdiff_t;
class Iterator {
public:
explicit Iterator(ValueType* pointer);
Iterator();
ValueType& operator*() const;
ValueType* operator->() const;
Iterator& operator=(Iterator other);
Iterator& operator++();
Iterator operator++(int);
Iterator& operator--();
Iterator operator--(int);
Iterator operator+(DifferenceType shift);
DifferenceType operator-(Iterator other);
Iterator& operator+=(DifferenceType shift);
Iterator& operator-=(DifferenceType shift);
bool operator==(const Iterator& other) const;
bool operator!=(const Iterator& other) const;
std::strong_ordering operator<=>(const Iterator& other) const;
private:
ValueType* current_;
};
Vector();
explicit Vector(size_t size);
Vector(std::initializer_list<ValueType> list);
Vector(const Vector& other);
Vector& operator=(const Vector& other);
~Vector();
SizeType Size() const;
SizeType Capacity() const;
const ValueType* Data() const;
ValueType& operator[](size_t position);
ValueType operator[](size_t position) const;
bool operator==(const Vector& other) const;
bool operator!=(const Vector& other) const;
std::strong_ordering operator<=>(const Vector& other) const;
void Reserve(SizeType new_capacity);
void Clear();
void PushBack(const ValueType& new_element);
void PopBack();
void Swap(Vector& other);
Iterator Begin();
Iterator End();
Iterator begin(); // NOLINT
Iterator end(); // NOLINT
private:
SizeType size_;
SizeType capacity_;
ValueType* start_;
};