qxLib
vector2d.h
Go to the documentation of this file.
1 /**
2 
3  @file vector2d.h
4  @author Khrapov
5  @date 17.02.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
12 #include <qx/containers/utils.h>
13 
14 #include <cstring>
15 
16 namespace qx
17 {
18 
19 /**
20 
21  @class vector2d
22  @brief Continuous 2d vector
23  @details Stores in memory like one big array and makes container cache friendly
24  @tparam T - value type
25  @author Khrapov
26  @date 18.08.2021
27 
28 **/
29 template<class T>
30 class vector2d
31 {
32 public:
33  using value_type = T;
34  using pointer = T*;
35  using const_pointer = const T*;
36  using reference = T&;
37  using const_reference = const T&;
38  using difference_type = std::ptrdiff_t;
39  using size_type = size_t;
40 
42 
43 public:
44  vector2d() = default;
45  vector2d(vector2d&& other) noexcept;
46  vector2d(const vector2d& other);
47 
48  /**
49  @brief vector2d object constructor
50  @param rows - num of rows in new vector
51  @param cols - num of cols in new vector
52  @param pData - data to copy, may be nullptr
53  **/
54  vector2d(size_type rows, size_type cols, const_pointer pData = nullptr);
55 
56  /**
57  @brief vector2d object constructor
58  @param rows - num of rows in new vector
59  @param cols - num of cols in new vector
60  @param data - element to fill in every vector cell
61  **/
62  vector2d(size_type rows, size_type cols, const_reference data);
63 
64  ~vector2d();
65 
66  const vector2d& operator=(vector2d&& other) noexcept;
67  const vector2d& operator=(const vector2d& other);
68 
69  /**
70  @brief Assign by moving from other vector
71  @param other - other vector rvalue ref
72  **/
73  void assign(vector2d&& other) noexcept;
74 
75  /**
76  @brief Assign by copying another vector
77  @param other - another vector
78  **/
79  void assign(const vector2d& other);
80 
81  /**
82  @brief Assign by size and data pointer
83  @details Data is being copied from pData with size rows * cols
84  @param rows - num of rows in new vector
85  @param cols - num of cols in new vector
86  @param pData - data to copy, may be nullptr
87  **/
88  void assign(size_type rows, size_type cols, const_pointer pData = nullptr);
89 
90  /**
91  @brief Assign by size and fill element
92  @param rows - num of rows in new vector
93  @param cols - num of cols in new vector
94  @param data - element to fill in every vector cell
95  **/
96  void assign(size_type rows, size_type cols, const_reference data);
97 
98  /**
99  @brief Reserve vector size
100  @param nElements - num elements
101  @retval - true if reserved successfully
102  **/
103  bool reserve(size_type nElements);
104 
105  /**
106  @brief Resize vector
107  @param rows - num of rows
108  @param cols - num of cols
109  @retval - true if resized successfully
110  **/
111  bool resize(size_type rows, size_type cols);
112 
113  /**
114  @brief Resize vector
115  @details If new size is bigger, new elements are not constructed
116  If new size is smaller, truncated elements are destructed
117  If ols cols != new cols, elements are moving from one col to another
118  @param rows - num of rows in new vector
119  @param cols - num of cols in new vector
120  @param data - data to fill
121  @retval - true if resized successfully
122  **/
123  bool resize(size_type rows, size_type cols, const_reference data);
124 
125  /**
126  @brief Clear vector and free memory
127  **/
128  void free();
129 
130  /**
131  @brief Fill vector with element
132  @param elem - element for filling
133  **/
134  void fill(const_reference elem);
135 
136  /**
137  @brief operator[]
138  @param nRow - row number
139  @retval - row
140  **/
141  pointer operator[](size_type nRow) noexcept;
142 
143  /**
144  @brief operator[]
145  @param nRow - row number
146  @retval - row
147  **/
148  const_pointer operator[](size_type nRow) const noexcept;
149 
150  /**
151  @brief Get element
152  @param nRow - row number
153  @param nCol - col number
154  @retval - element
155  **/
156  const_reference get(size_type nRow, size_type nCol) const noexcept;
157 
158  /**
159  @brief Set element
160  @param nRow - row number
161  @param nCol - col number
162  @param data - element
163  **/
164  void set(size_type nRow, size_type nCol, const_reference data) noexcept;
165 
166  /**
167  @brief Get num of rows in vector
168  @retval - num of rows in vector
169  **/
170  size_type rows() const noexcept;
171 
172  /**
173  @brief Get num of cols in vector
174  @retval - num of cols in vector
175  **/
176  size_type cols() const noexcept;
177 
178  /**
179  @brief Get num of rows in vector
180  @retval - num of rows in vector
181  **/
182  size_type size_x() const noexcept;
183 
184  /**
185  @brief Get num of cols in vector
186  @retval - num of cols in vector
187  **/
188  size_type size_y() const noexcept;
189 
190  /**
191  @brief Get allocated size
192  @retval - allocated size
193  **/
194  size_type capacity() const noexcept;
195 
196 private:
197  pointer m_pData = nullptr;
198  size_type m_nRows = 0;
199  size_type m_nCols = 0;
200  size_type m_nAllocatedSize = 0;
201 };
202 
203 } // namespace qx
204 
Continuous 2d vector.
Definition: vector2d.h:31
bool resize(size_type rows, size_type cols)
Resize vector.
Definition: vector2d.inl:106
void free()
Clear vector and free memory.
Definition: vector2d.inl:145
size_type rows() const noexcept
Get num of rows in vector.
Definition: vector2d.inl:185
bool reserve(size_type nElements)
Reserve vector size.
Definition: vector2d.inl:88
size_type capacity() const noexcept
Get allocated size.
Definition: vector2d.inl:209
pointer operator[](size_type nRow) noexcept
operator[]
Definition: vector2d.inl:161
void fill(const_reference elem)
Fill vector with element.
Definition: vector2d.inl:154
const_reference get(size_type nRow, size_type nCol) const noexcept
Get element.
Definition: vector2d.inl:173
void set(size_type nRow, size_type nCol, const_reference data) noexcept
Set element.
Definition: vector2d.inl:179
size_type size_y() const noexcept
Get num of cols in vector.
Definition: vector2d.inl:203
void assign(vector2d &&other) noexcept
Assign by moving from other vector.
Definition: vector2d.inl:58
size_type cols() const noexcept
Get num of cols in vector.
Definition: vector2d.inl:191
size_type size_x() const noexcept
Get num of rows in vector.
Definition: vector2d.inl:197
#define QX_IMPL_CONTAINER(container)
Macro for random access containers with common functions.
Definition: container.h:19