模拟vector
我们可以通过模板实现类似vector的类。我们实现一个StrVecTemp类,其内部通过allocator开辟空间,存储的类型用T来表示,T是模板类型。
template <typename T>
class StrVecTemp
{
public:
StrVecTemp() : elements(nullptr), first_free(nullptr),
cap(nullptr) {}
StrVecTemp(const StrVecTemp &);
StrVecTemp &operator=(const StrVecTemp &);
StrVecTemp(StrVecTemp &&src) noexcept : elements(src.elements),
first_free(src.first_free), cap(src.cap)
{
src.elements = src.first_free = src.cap = nullptr;
}
template <class... Args>
void emplace_back(Args &&...args);
~StrVecTemp();
void push_back(const T &);
void pop_back(T &s);
size_t size() const { return first_free - elements; }
size_t capacity() const { return cap - elements; }
T *begin() const
{
return elements;
}
T *end() const
{
return first_free;
}
private:
void chk_n_alloc()
{
if (size() == capacity())
{
reallocate();
}
}
void reallocate();
std::pair<T *, T *> alloc_n_copy(const T *, const T *);
void free();
T *elements;
T *first_free;
T *cap;
static std::allocator<T> alloc;
};
template <typename T>
std::allocator<T> StrVecTemp<T>::alloc;
alloc在使用前要在类外初始化,因为是模板类,所以放在.h中初始化即可。 接下来我们要实现根据迭代器开始和结束的区间copy旧元素到新的空间里
template <typename T>
std::pair<T *, T *> StrVecTemp<T>::alloc_n_copy(const T *b, const T *e)
{
auto newdata = alloc.allocate(e - b);
auto first_free = uninitialized_copy(b, e, newdata);
return {newdata, first_free};
}
实现copy构造
template <class T>
StrVecTemp<T>::StrVecTemp(const StrVecTemp &strVec)
{
auto rsp = alloc_n_copy(strVec.begin(), strVec.end());
elements = rsp.first;
first_free = rsp.second;
cap = rsp.second;
}
实现copy赋值
template <class T>
StrVecTemp<T> &StrVecTemp<T>::operator=(const StrVecTemp &strVec)
{
if (this == &strVec)
{
return *this;
}
auto rsp = alloc_n_copy(strVec.begin(), strVec.end());
elements = rsp.first;
first_free = rsp.second;
cap = rsp.second;
}
析构函数要先销毁数据再回收内存
template <class T>
StrVecTemp<T>::~StrVecTemp()
{
if (elements == nullptr)
{
return;
}
auto dest = elements;
for (size_t i = 0; i < size(); i++)
{
alloc.destroy(dest++);
}
alloc.deallocate(elements, cap - elements);
elements = nullptr;
cap = nullptr;
first_free = nullptr;
}
重新开辟空间
template <class T>
void StrVecTemp<T>::reallocate()
{
T *newdata = nullptr;
if (elements == nullptr || cap == nullptr || first_free == nullptr)
{
newdata = alloc.allocate(1);
elements = newdata;
first_free = newdata;
cap = newdata + 1;
return;
}
newdata = alloc.allocate(size() * 2);
auto dest = newdata;
auto src = elements;
for (size_t i = 0; i != size(); ++i)
{
alloc.construct(dest++, std::move(*src++));
}
free();
elements = newdata;
first_free = dest;
cap = newdata + size() * 2;
}
上面的函数用到了free函数,我们自己实现一个free
template <typename T>
void StrVecTemp<T>::free()
{
if (elements == nullptr)
{
return;
}
auto dest = elements;
for (size_t i = 0; i < size(); i++)
{
alloc.destroy(dest++);
}
alloc.deallocate(elements, cap - elements);
elements = nullptr;
cap = nullptr;
first_free = nullptr;
}
压入元素和弹出元素
template <class T>
void StrVecTemp<T>::push_back(const T &t)
{
chk_n_alloc();
alloc.construct(first_free++, t);
}
template <class T>
void StrVecTemp<T>::pop_back(T &s)
{
if (first_free == nullptr)
{
return;
}
if (size() == 1)
{
s = *elements;
alloc.destroy(elements);
first_free = nullptr;
elements = nullptr;
return;
}
s = *(--first_free);
alloc.destroy(first_free);
}
接下来要实现emplace_back,因为emplace_back支持多种构造函数的参数,所以要用模板参数列表的方式定义该函数。 模板参数列表和形参列表都要用参数包的方式
template <class T>
template <class... Args>
void StrVecTemp<T>::emplace_back(Args &&...args)
{
chk_n_alloc();
alloc.construct(first_free++, forward<Args>(args)...);
}
Args是模板参数包,args是参数列表。因为construct的参数可能为右值引用,所以要用forward将原参数列表类型原样转发。
总结
本文模拟实现了vector的功能。 视频链接https://www.bilibili.com/video/BV1Et4y1p73a/?vd_source=8be9e83424c2ed2c9b2a3ed1d01385e9 源码链接 https://gitee.com/secondtonone1/cpplearn
|