动态分配数组中的运行时错误以删除c ++中的元素

时间:2019-01-29 16:20:21

标签: c++ c++11 clang c++14 c++17

我已经用C ++编写了一个程序来删除动态分配的数组中的元素。我可以看到带有已删除元素的数组,但是此后,它会产生一些我无法理解的错误。我将图片包含在错误中,因为我无法复制错误消息。 我正在使用:

Debian 9,32位

编译器叮当声。

IDE代码::块。

代码:

#include<iostream>
#include<cstdlib>
using namespace std;

int main()
{
    int *ar,arsize,lp1,lp2,lp3,lp4,ele,pos;
    ar=nullptr;
    cout<<"enter the size of array to be created:- "; cin>>arsize;
    ar=new int[arsize];
    if(!ar)
    {
        cout<<"Aborting";
        exit(1);
    }
    else
    {
    cout<<"enter the elements for array:- ";
    for(lp1=0;lp1<arsize;lp1++)
    {
        cin>>ar[lp1];
    }
    cout<<"Enter element to be deleted:- "; cin>>ele;
    for(lp2=0;lp2<arsize;lp2++)
    {
        if(ar[lp2]==ele)
        {
            ar[lp2]=0;
            pos=lp2;
            break;
        }
    }
    for(lp3=pos;lp3<arsize;lp3++)
    {
        ar[lp3]=ar[lp3+1];
    }
    ar[arsize]=0;
    cout<<"new array is:-"<<endl;
    for(lp4=0;lp4<arsize-1;lp4++)
    {
        cout<<"\t"<<ar[lp4]<<endl;
    }
    delete[]ar;
    return 0;
    }
}

2 个答案:

答案 0 :(得分:2)

此代码具有未定义的行为:

EXCEPTION
 WHEN zero_divide then
    dbms_output.put_line('Division by Zero happened .');
IP_rec_calc := 0; --whatever you want 

由于 ar[lp3]=ar[lp3+1]; 指向最后一个元素,因此lp3超出范围。

也:

ar[lp3+1];

写越界。由于索引从零开始,因此最大有效索引为ar[arsize]=0; 。最后一行破坏了您的堆。

答案 1 :(得分:1)

您正在尝试访问ar[arsize],该地址不存在。

请记住,C ++数组的索引为0。

因此,请尝试使用ar[arsize-1]