22071.10.11作业

#include <iostream>

using namespace std;

template<typename T>
class MyVct
{
private:
    T *first;
    T *last;
    T *end;
public:
    MyVct(int size = 2) {
        first = new T[size];
        last = first;
        end = first + size;
    }
    ~MyVct()
    {
        delete  []first;
        first = last = end = nullptr;
    }
    MyVct(const MyVct &other)
    {
        int len = other.last-other.first;
        int size = other.end - other.first;
        this->first = new T[size];
        memcpy(this->first, other.first, len*sizeof(T));
        this->last = this->first+len;
        this->end = this->first+size;
    }

    //判空
    bool empty()
    {
        return this->first == this->last;
    }
    //判满
    bool full()
    {
        return this->last == this->end;
    }

    //2倍扩容
    void greater()
    {
        //获取当前容器总容量
        int size = this->end - this->first;
        //在堆区重新申请一个2倍的空间
        T *temp = new T[2*size];
        //将原空间数据放到新申请的空间中
        memcpy(temp, this->first, size*sizeof (T));
        //删除原来的空间
        delete []first;
        //更新指针指向
        first = temp;
        //更新其他指针
        last = first+size;
        end = first + 2*size;
    }
    //尾插
    void push_back( const T val)
    {
        if(this->full())
        {
            this->greater();    //如果满了,进行扩容
        }

        *last = val;
        last++;
    }

    //尾删
    void pop_back()
    {
        if(this->empty())
        {
            return;
        }
        //尾指针前移
        --last;
    }
    //获取第一个元素
    T front() const
    {
        return *first;
    }
    int size()
    {
        return end-first;
    }
    int len()
    {
        return last-first;
    }
    T &at(int index)
    {
        if(index<0 || index>this->len())
        {
            cout<<"访问越界"<<endl;
        }
        return  first[index];
    }
};

int main()
{

    MyVct<int> v;

    //cout<<v.size()<<endl;
    for(int i=1; i<=20; i++)
    {
        v.push_back(i);
        cout<<v.size()<<endl;
    }

    for(int i=0; i<20; i++)
    {
        cout<<v.at(i)<<" ";
    }
    cout<<endl;

    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值