为了账号安全,请及时绑定邮箱和手机立即绑定

如下这个链表为什么不能连多个点?

如下这个链表为什么不能连多个点?

qq_遁去的一_1 2022-08-05 11:07:01
#include<iostream.h>class CWnodeChain;class CWnode{friend CWnodeChain;private:int data;CWnode *link;};class CWnodeChain{public:CWnodeChain(){first=0;}~CWnodeChain();int Length();CWnodeChain Insert(int nd);void Output();private:CWnode *first;};CWnodeChain::~CWnodeChain(){CWnode *p=first;while(first){p=first->link;delete first;first=p;}}int CWnodeChain::Length(){CWnode *p;int len=0;for(p=first;p;p->link){len++;}return len;}CWnodeChain CWnodeChain::Insert(int nd){CWnode *q=new CWnode;q->data=nd;//从头接点插入if(!first){first=q;}else{q->link=first;first=q;}return *this;}void CWnodeChain::Output() //输出{CWnode *p;for(p=first;p;p=p->link)cout<<p->data<<endl;}void main(){CWnodeChain obj;cout<<obj.Length()<<endl;obj.Insert(3);cout<<obj.Length()<<endl;obj.Output();}
查看完整描述

1 回答

?
MM们

TA贡献1886条经验 获得超2个赞

1.CWnode没有构造函数,导致新生成的CWnode结点的link成员不是空,而是随机指向某个地址,导致错误.

2.自己写类时,永远不要在某个函数中直接返回类对象,正确的方法是要么使用引用,要么返回指针.

3.Length函数里,for循环的第三个部分写错了.

正确代码如下:
#include<iostream.h>
class CWnodeChain;

class CWnode
{
friend CWnodeChain;
private:
int data;
CWnode *link;
public: //加上默认构造函数
CWnode():link(0){};
};

class CWnodeChain
{
public:
CWnodeChain(){first=0;}
~CWnodeChain();
int Length();
CWnodeChain &Insert(int nd); //返回类型用引用
void Output();
private:

CWnode *first;
};

CWnodeChain::~CWnodeChain()
{
CWnode *p=first;
while(first)
{
p=first->link;
delete first;
first=p;
}
}

int CWnodeChain::Length()
{
CWnode *p;
int len=0;
for(p=first;p;p=p->link) //原来你写的是p->link
{

len++;
}

return len;
}

CWnodeChain &CWnodeChain::Insert(int nd) //返回类型是引用
{

CWnode *q=new CWnode;

q->data=nd;
//从头接点插入
if(!first)
{
first=q;
}
else
{

q->link=first;
first=q;

}

return *this;
}

void CWnodeChain::Output() //输出
{
CWnode *p;
for(p=first;p;p=p->link)
cout<<p->data<<endl;

}

void main()
{

CWnodeChain obj;
cout<<obj.Length()<<endl;

obj.Insert(3);
cout<<obj.Length()<<endl;
obj.Output();

}


查看完整回答
反对 回复 2022-08-08
  • 1 回答
  • 0 关注
  • 167 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信