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
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
#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可以看看这个里面的,单链表就是你描述的那种用法
上面那个是一个简单的创建单节点的
修改如下:
//---------------------------------------------------------------------------
#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<
for(int i=0;i
cout<<"("<
if(count%5==0)
cout<
delete[] p;
}
//---------------------------------------------------------------------------
free(arry);