qxLib
triangular_vector.inl
Go to the documentation of this file.
1 /**
2 
3  @file triangular_vector.inl
4  @author Khrapov
5  @date 23.02.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 template<class T>
14 inline triangular_vector<T>::triangular_vector(triangular_vector&& other) noexcept
15 {
16  assign(std::move(other));
17 }
18 
19 template<class T>
20 inline triangular_vector<T>::triangular_vector(const triangular_vector& other)
21 {
22  assign(other);
23 }
24 
25 template<class T>
26 inline triangular_vector<T>::triangular_vector(size_type nSideSize)
27 {
28  resize(nSideSize);
29 }
30 
31 template<class T>
32 inline triangular_vector<T>::triangular_vector(size_type nSideSize, const_reference data)
33 {
34  assign(nSideSize, data);
35 }
36 
37 template<class T>
39 {
40  free();
41 }
42 
43 template<class T>
44 inline const typename triangular_vector<T>::triangular_vector& triangular_vector<T>::operator=(
45  triangular_vector&& other) noexcept
46 {
47  assign(std::move(other));
48  return *this;
49 }
50 
51 template<class T>
52 inline const typename triangular_vector<T>::triangular_vector& triangular_vector<T>::operator=(
53  const triangular_vector& other)
54 {
55  assign(other);
56  return *this;
57 }
58 
59 template<class T>
60 inline void triangular_vector<T>::assign(triangular_vector&& other) noexcept
61 {
62  std::swap(m_pData, other.m_pData);
63  std::swap(m_nSideSize, other.m_nSideSize);
64  std::swap(m_nSize, other.m_nSize);
65  std::swap(m_nAllocatedSize, other.m_nAllocatedSize);
66 }
67 
68 template<class T>
70 {
71  if (other.m_pData != m_pData && resize(other.size_side()))
72  std::memcpy(m_pData, other.m_pData, size() * sizeof(T));
73 }
74 
75 template<class T>
76 inline void triangular_vector<T>::assign(size_type nSideSize, const_reference data)
77 {
78  resize(nSideSize, data);
79 }
80 
81 template<class T>
82 inline bool triangular_vector<T>::reserve(size_type nSideSize)
83 {
84  bool bRet = false;
85 
86  const size_type nNewElements = _get_vector_size(nSideSize);
87  if (nNewElements > m_nAllocatedSize)
88  {
89  if (void* pMem = std::realloc(m_pData, nNewElements * sizeof(T)))
90  {
91  m_pData = static_cast<T*>(pMem);
92  m_nAllocatedSize = nNewElements;
93  bRet = true;
94  }
95  }
96  else
97  bRet = true;
98 
99  return bRet;
100 }
101 
102 template<class T>
103 inline bool triangular_vector<T>::resize(size_type nSideSize)
104 {
105  bool bRet = false;
106 
107  if (nSideSize > 0 && reserve(nSideSize))
108  {
109  auto itFirst = iterator(this, m_nSize);
110 
111  m_nSideSize = nSideSize;
112  m_nSize = _get_vector_size(nSideSize);
113 
114  auto itLast = iterator(this, m_nSize);
115  destruct(itFirst, itLast);
116 
117  bRet = true;
118  }
119 
120  return bRet;
121 }
122 
123 template<class T>
124 inline bool triangular_vector<T>::resize(size_type nSideSize, const_reference data)
125 {
126  bool bRet = resize(nSideSize);
127 
128  if (bRet)
129  fill(data);
130 
131  return bRet;
132 }
133 
134 template<class T>
135 inline void triangular_vector<T>::fill(const_reference data)
136 {
137  value_type temp = data;
138  std::fill(begin(), end(), temp);
139 }
140 
141 template<class T>
142 inline typename triangular_vector<T>::const_reference triangular_vector<T>::get(size_type nRow, size_type nCol)
143  const noexcept
144 {
145  return m_pData[_get_index(nRow, nCol)];
146 }
147 
148 template<class T>
149 inline void triangular_vector<T>::set(size_type nRow, size_type nCol, const_reference data) noexcept
150 {
151  m_pData[_get_index(nRow, nCol)] = data;
152 }
153 
154 template<class T>
155 inline typename triangular_vector<T>::size_type triangular_vector<T>::size_side(void) const noexcept
156 {
157  return m_nSideSize;
158 }
159 
160 template<class T>
161 inline typename triangular_vector<T>::size_type triangular_vector<T>::capacity(void) const noexcept
162 {
163  return m_nAllocatedSize;
164 }
165 
166 template<class T>
168 {
169  clear();
170  std::free(m_pData);
171  m_pData = nullptr;
172  m_nAllocatedSize = 0;
173 }
174 
175 template<class T>
176 inline typename triangular_vector<T>::size_type triangular_vector<T>::_get_index(
177  size_type nRow,
178  size_type nCol) noexcept
179 {
180  if (nRow >= nCol)
181  return (nRow * nRow + nRow) / 2 + nCol;
182  else
183  return (nCol * nCol + nCol) / 2 + nRow;
184 }
185 
186 template<class T>
187 inline typename triangular_vector<T>::size_type triangular_vector<T>::_get_vector_size(size_type nSideSize) noexcept
188 {
189  return (nSideSize * nSideSize + nSideSize) / 2;
190 }
191 
192 /**
193  @brief Get triangular vector size
194  @retval - number of elements in triangular vector (without duplication)
195 **/
196 template<class T>
197 inline typename triangular_vector<T>::size_type triangular_vector<T>::size(void) const noexcept
198 {
199  return m_nSize;
200 }
201 
202 /**
203  @brief Get raw data pointer
204  @retval - data pointer
205 **/
206 template<class T>
207 inline typename triangular_vector<T>::pointer triangular_vector<T>::data(void) noexcept
208 {
209  return m_pData;
210 }
211 
212 /**
213  @brief Get element in continuous vector at index
214  @param nIndex - continuous vector index
215  @retval - value
216 **/
217 template<class T>
218 inline typename triangular_vector<T>::reference triangular_vector<T>::at(size_type nIndex) noexcept
219 {
220  return m_pData[nIndex];
221 }
222 
223 /**
224  @brief Clear triangular vector
225 **/
226 template<class T>
227 inline void triangular_vector<T>::clear() noexcept
228 {
229  if (m_pData)
230  destruct(begin(), end());
231 
232  m_nSideSize = 0;
233  m_nSize = 0;
234 }
235 
236 } // namespace qx
Non-const random access iterator type.
Definition: iterator.h:35
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.
void destruct(iterator_t itStart, iterator_t itEnd)
Call destructors.
Definition: utils.inl:14