C++ 指向结构体的数组指针 动态分配内存后如何删除

2024-12-27 10:16:23
推荐回答(5个)
回答1:

LS的如果不知道请不要随便误导别人哦
其实你这个内存分配没错,但是你的内存访问出错了,小哥,你应该知道数组的计数是从0开始的吧?比如说数组 int a[2],那么2个元素就是a[0],a[1],没有a[2]哦,所以
for(int i=1;i<=n;i++)
{
p[i].x=pow(-1,rand())*rand()/1000;
p[i].y=pow(-1,rand())*rand()/1000;
p[i].flag=i;
}
访问出界了,只要把for语句改为
for(int i=0;i同时以后你也记住没有释放内存的错误编译器是检测不出来的

回答2:

LS的如果不知道请不要随便误导别人哦
其实你这个内存分配没错,但是你的内存访问出错了,小哥,你应该知道数组的计数是从0开始的吧?比如说数组
int
a[2],那么2个元素就是a[0],a[1],没有a[2]哦,所以
for(int
i=1;i<=n;i++)
{
p[i].x=pow(-1,rand())*rand()/1000;
p[i].y=pow(-1,rand())*rand()/1000;
p[i].flag=i;
}
访问出界了,只要把for语句改为
for(int
i=0;i同时以后你也记住没有释放内存的错误编译器是检测不出来的

回答3:

#include
using
namespace
std;
struct
node
{
int
data;
int
*next;
};
int
main()
{
node
*tmpnode=new
node;
cout<<"please
enter
a
number:";
cin>>tmpnode->data;
tmpnode->next=null;
}
http://baike.baidu.com/view/178637.htm可以看看这个里面的,单链表就是你描述的那种用法
上面那个是一个简单的创建单节点的

回答4:

修改如下:
//---------------------------------------------------------------------------

#include
#include
#include
#include
#include
#include
struct point
{
int x,y;
int flag;
int real;
};
void main()
{

int n;
cout<<"1.利用随机函数产生[x(-100,100),y(-100,100)]内的n个点坐标,请输入n(n<10000):";
cin>>n;
point *p=NULL;
p=new point[n];
srand(time(NULL));
for(int i=0;i{
p[i].x=pow(-1.0,rand())*rand()/1000;
p[i].y=pow(-1.0,rand())*rand()/1000;
p[i].flag=i;
}
cout<int count=0;
for(int i=0;i{
cout<<"("<count++;
if(count%5==0)
cout<}
delete[] p;
}

//---------------------------------------------------------------------------

回答5:

free(arry);