新微赢技术网
标题:
非法操作的问题何在?
[打印本页]
作者:
QQ賊aiq嘿
时间:
2009-11-3 03:33
标题:
非法操作的问题何在?
#include<iostream.h>
struct node
{
int music[10];
char name[10];
int i;
node *next;
};
class LinkList
{
public:
LinkList()
{
first=NULL;
n=0;
}
void Insert(int pos,const &x);
void Setup();
void Display();
int length()
{
return n;
}
node* SetPos(int pos);
protected:
node *first;
int n;
};
node* LinkList::SetPos(int pos)
{
node *q=first;
for(int i=0;i<pos;i++)
q=q->next;
return q;
}
void LinkList::Setup()
{
node *q,*p;
node m1={{1,2,3,4,5},"小蜜蜂",1};
q=new node;
q=&m1;
q->next=first;
first=q;
node m2={{5,4,3,2,1},"遇见",2};
p=new node;
p=&m2;
p->next=q->next;
q->next=p;
n+=2;
}
void LinkList::Display()
{
node *m=first->next;
cout<<"歌曲库显示\n";
for(int a=1;a<=n;a++)
{
cout<<a<<'.'<<m->name<<endl;
m=m->next;
}
}
void main()
{
LinkList nick;
nick.Setup();
nick.Display();
}
提示非法..请指教.....
作者:
⊿°屵重缺銭
时间:
2009-11-3 03:33
void LinkList::Setup()
{
node *q,*p;
node m1={{1,2,3,4,5},"小蜜蜂",1};//局部数据
q=new node;
q=&m1;//申请完空间没有用
q->next=first;
first=q;
node m2={{5,4,3,2,1},"遇见",2};
p=new node;
p=&m2;//类似
p->next=q->next;
q->next=p;
n+=2;
}
void LinkList::Display()
{
node *m=first->next;//f->next为空
cout<<"歌曲库显示\n";
for(int a=1;a<=n;a++)
{
cout<<a<<'.'<<m->name<<endl;
m=m->next;
}
}
作者:
听妈妈的话
时间:
2009-11-3 03:33
song4 说的对。
我先前还没看到,好失败
这里
node m1={{1,2,3,4,5},"小蜜蜂",1};
q=new node;
q=&m1;
q->next=first;
first=q;
m1的地址复值给q,然后又把这个局部变量的地址给first这是错误的,函数结束后,这个栈中的数据都会被销毁,那些曾经存放过的东西都不存在,你可以这样改下:
void LinkList::Setup()
{
node *q,*p;
node m1={{1,2,3,4,5},"小蜜蜂",1,NULL};
q=new node;
strcpy(q->name,m1.name);
q->next=m1.next;
q->next=first;
first=q;
node m2={{5,4,3,2,1},"遇见",2,NULL};
p=new node;
strcpy(p->name,m2.name);
p->next=m2.next;
p->next=q->next;
q->next=p;
n+=2;
}
这样只是复值,而不是取地址,这样就不会出现上述错误
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2