设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 983|回复: 5
打印 上一主题 下一主题

链表问题 , 首地址的值不能删除,为什么?

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 00:53:27 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#include<iostream>
using namespace std;
struct Person
{
char name[20];
int id;
Person* pN;
};
Person* head;
Person* creat()
{
Person* ps;
Person* pEnd;
ps = new Person;
cout<<"please enter the name :"<<endl;
cin>>ps->name;
cout<<"please enter the id :"<<endl;
cin>>ps->id;
pEnd = ps;
head = NULL;
while(ps->id != 0)
{
if(head == NULL)
{
head = ps;
}
else
{
pEnd->pN = ps;
}
pEnd = ps;
ps = new Person;
cout<<"please enter the name :"<<endl;
cin>>ps->name;
cout<<"please enter the id :"<<endl;
cin>>ps->id;
}
pEnd-> pN= NULL;
delete ps;
return (head);
}
void display(Person* head)
{
cout<<"Show this List :"<<endl;
while(head)
{
cout<<"Name is :"<<head->name<<endl;
cout<<"ID is :"<<head->id<<endl;
cout<<"********************************"<<endl;
head = head->pN;
}
}
void del(Person* head,int number)
{
Person* p;
if(!head)
{
cout<<"Empty of head"<<endl;
return ;
}
if(head->id == number)
{
p = head;
head = head->pN;
delete p;
cout<<"The head has delete the number"<<endl;
return ;
}
for(Person* pd = head;pd->pN;pd = pd->pN)
{
if(pd->pN->id == number)
{
p = pd->pN;
pd->pN = p->pN;
delete p;
cout<<"delete the number"<<endl;
return ;
}
}
}
int main()
{
head = creat();
del(head,54);
display(head);
system("pause");
return 0;
}
2#
发表于 2009-11-3 00:53:29 | 只看该作者
先抱怨一下,这个问题我好像以前解决过。不会是哪本书上的习题吧?
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 00:53:30 | 只看该作者
void del(Person* head,int number)

修正为void del(Person*& head,int number)
回复 支持 反对

使用道具 举报

4#
发表于 2009-11-3 00:53:32 | 只看该作者
为啥要用引用指针呢,有点不明白了...
回复 支持 反对

使用道具 举报

5#
发表于 2009-11-3 00:53:34 | 只看该作者
通过打印函数内和函数外的head地址,你会发现函数内的head与函数外的head不一样。有点象值传递和引用传递。


这里你也可以利用head的全局变量的特点,把del和display的head参数去掉。运行也能成功。
回复 支持 反对

使用道具 举报

6#
发表于 2009-11-3 00:53:35 | 只看该作者
解决啦,QQQ
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 04:48 , Processed in 0.098502 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表