z__y 2022-11-16 04:02 采纳率: 88.9%
浏览 16
已结题

vector类的实现,动态内存越界问题

vector类的实现,动态内存越界问题
这是另一个博主的问题,我的疑惑是,如果输入的n>一开始设置的size=100,那么在add函数中不会出现越界吗?

#include 
using namespace std;
template <class T>
class Vector
{
private:
    int pos;
    int size = 100;
    T* data;
public:
    Vector() {
        pos = 0;
        data = new T[size];
    }
    int add(T m) {
        data[pos]=m;
        pos++;
        return pos-1;
    }
    int get_size() { return pos; }
    void remove(int m) {
        for (int i = m; i < pos-1; i++) {
            data[i] = data[i + 1];
        }
        pos--;
    }
    const T& operator[](int index)const
    {
        return data[index];
    }
};
int main()
{
    Vector<int> vint;
    int n,m;
    cin >> n >> m;
    for ( int i=0; i//    add() can inflate the vector automatically
        vint.add(i);    
    }
    //    get_size() returns the number of elements stored in the vector
    cout << vint.get_size() << endl;
    cout << vint[m] << endl;
    //    remove() removes the element at the index which begins from zero
    vint.remove(m);
    cout << vint.add(-1) << endl;
    cout << vint[m] << endl;
    Vector<int> vv = vint;
    cout << vv[vv.get_size()-1] << endl;
    vv.add(m);
    cout << vint.get_size() << endl;
}

展开全部

  • 写回答

4条回答 默认 最新

  • CSDN专家-link 2022-11-16 04:38
    关注

    肯定越界啊,这代码并没有考虑这种情况

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
    z__y 2022-11-16 09:21

    但是它奇迹般地运行并且通过了PTA测试

    回复
查看更多回答(3条)
编辑
预览

报告相同问题?

问题事件

  • 系统已结题 12月10日
  • 已采纳回答 12月3日
  • 创建了问题 11月16日
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部