qxLib
triangular_vector.h
Go to the documentation of this file.
1 /**
2 
3  @file triangular_vector.h
4  @author Khrapov
5  @date 23.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 triangular_vector
22  @brief Triangular vector class
23  @details Only elements with nRow >= nCols are stored
24  data storage example:
25  x 0 0 0 vec[r][c] = r >= c => vec[r][c]
26  x x 0 0 r < c => vec[c][r]
27  x x x 0
28  x x x x
29  @tparam T - value type
30  @author Khrapov
31  @date 23.02.2020
32 
33 **/
34 template<class T>
36 {
37 public:
38  using value_type = T;
39  using pointer = T*;
40  using const_pointer = const T*;
41  using reference = T&;
42  using const_reference = const T&;
43  using difference_type = std::ptrdiff_t;
44  using size_type = size_t;
45 
47 
48 public:
49  triangular_vector() = default;
50  triangular_vector(triangular_vector&& other) noexcept;
52 
53  /**
54  @brief triangular_vector object constructor
55  @param nSideSize - matrix side size
56  **/
57  triangular_vector(size_type nSideSize);
58 
59  /**
60  @brief triangular_vector object constructor
61  @param nSideSize - matrix side size
62  @param data - data to fill
63  **/
64  triangular_vector(size_type nSideSize, const_reference data);
65 
67 
68  const triangular_vector& operator=(triangular_vector&& other) noexcept;
69  const triangular_vector& operator=(const triangular_vector& other);
70 
71  /**
72  @brief Assigns new contents to the vector, moving from other vector
73  @param other - triangular_vector rvalue ref
74  **/
75  void assign(triangular_vector&& other) noexcept;
76 
77  /**
78  @brief Assigns new contents to the vector, copying from other vector
79  @param other - other triangular_vector
80  **/
81  void assign(const triangular_vector& other);
82 
83  /**
84  @brief Assigns new contents to the vector, creating new vector with size size and filling value
85  @param nSideSize - matrix side size
86  @param data - data to fill
87  **/
88  void assign(size_type nSideSize, const_reference data);
89 
90  /**
91  @brief Reserve memory for vector
92  @param nSideSize - new matrix side size
93  @retval - true if reserved
94  **/
95  bool reserve(size_type nSideSize);
96 
97  /**
98  @brief Resize triangular vector without filling with new value
99  @param nSideSize - new matrix side size
100  @retval - true if resized
101  **/
102  bool resize(size_type nSideSize);
103 
104  /**
105  @brief Resize triangular vector with filling with new value
106  @param nSideSize - new matrix side size
107  @param data - data to fill
108  @retval - true if resized
109  **/
110  bool resize(size_type nSideSize, const_reference data);
111 
112  /**
113  @brief Fill vector with value
114  @param data - value to fill
115  **/
116  void fill(const_reference data);
117 
118  /**
119  @brief Get value on position
120  @param nRow - row num
121  @param nCol - column num
122  @retval - vector value
123  **/
124  const_reference get(size_type nRow, size_type nCol) const noexcept;
125 
126  /**
127  @brief Set value on position
128  @param nRow - row num
129  @param nCol - column num
130  @param data - value to set
131  **/
132  void set(size_type nRow, size_type nCol, const_reference data) noexcept;
133 
134  /**
135  @brief Get matrix side size
136  @retval - matrix side size
137  **/
138  size_type size_side() const noexcept;
139 
140  /**
141  @brief Get capacity
142  @retval - capacity
143  **/
144  size_type capacity() const noexcept;
145 
146  /**
147  @brief Clear vector and free memory
148  **/
149  void free();
150 
151 private:
152  /**
153  @brief Convert row and column numbers to continuous vector index
154  @param nRow - row number
155  @param nCol - column number
156  @retval - continuous vector index
157  **/
158  static size_type _get_index(size_type nRow, size_type nCol) noexcept;
159 
160  /**
161  @brief Get continuous vector size
162  @param nSideSize - matrix side size
163  @retval - continuous vector size
164  **/
165  static size_type _get_vector_size(size_type nSideSize) noexcept;
166 
167 private:
168  pointer m_pData = nullptr;
169  size_type m_nSideSize = 0;
170  size_type m_nSize = 0;
171  size_type m_nAllocatedSize = 0;
172 };
173 
174 } // namespace qx
175 
Triangular vector class.
void free()
Clear vector and free memory.
bool resize(size_type nSideSize)
Resize triangular vector without filling with new value.
void assign(triangular_vector &&other) noexcept
Assigns new contents to the vector, moving from other vector.
bool reserve(size_type nSideSize)
Reserve memory for vector.
void set(size_type nRow, size_type nCol, const_reference data) noexcept
Set value on position.
size_type capacity() const noexcept
Get capacity.
const_reference get(size_type nRow, size_type nCol) const noexcept
Get value on position.
void fill(const_reference data)
Fill vector with value.
size_type size_side() const noexcept
Get matrix side size.
#define QX_IMPL_CONTAINER(container)
Macro for random access containers with common functions.
Definition: container.h:19