gpt4 book ai didi

c++ - 为什么在链接列表中链接之前需要填充数据?

转载 作者:行者123 更新时间:2023-12-02 10:22:07 24 4
gpt4 key购买 nike

#include<iostream>
using namespace std;
struct Data
{
string name;
int age;
string address;
string occupation;
struct Data *Next;
};
struct Data *Head=NULL,*Tail=NULL;

//here in my case. i am first linking Next & Head pointer before puting data in list.The code don't give any error but concept is not implemented properly.
void Add()
{
struct Data *temp;
temp = new Data;
if(Head==NULL)
{
Head=temp;
}else{
temp=Tail;
}
cout<< "Enter Your name :";
cin>> temp->name;
cout<< "Enter Your Age :";
cin>> temp->age;
cout<< "Enter Your Address:";
cin>> temp->address;
cout<< "Enter Your Occupation";
cin >>temp->occupation;

temp->Next = NULL;
Tail= (temp->Next) ;
}


请解释一下我的概念,为什么我们需要在连接之前输入数据。看一下void add()函数。阅读评论
在输入1上,它正确地进行了数据插入,但是下一次在同一输入上循环了一次之后。停止执行。

最佳答案

主要问题在这里:

temp=Tail;

您可以在设置数据之前修改 temp指向的内容。因此,此后的所有内容都是修改 Tail而不是 temp。这也会导致内存泄漏。

还有其他问题,例如 Tail始终是 nullptr,因为在分配 Head时需要分配它。另外,您在末尾没有正确链接临时文件。
void Add()
{
struct Data *temp = new Data;
if (!temp) return;

temp->Next = nullptr;

cout<< "Enter Your name :";
cin>> temp->name;
cout<< "Enter Your Age :";
cin>> temp->age;
cout<< "Enter Your Address:";
cin>> temp->address;
cout<< "Enter Your Occupation";
cin >>temp->occupation;

if (!Head) {
Head = Tail = temp;
}
else {
Tail->next = temp;
Tail = temp;
}
}

请注意,您也可以在链接后设置数据,只要不修改 temp指向的内容即可:
void Add()
{
struct Data *temp = new Data;
if (!temp) return;
temp->Next = nullptr;

if (!Head) {
Head = Tail = temp;
}
else {
Tail->next = temp;
Tail = temp;
}

cout<< "Enter Your name :";
cin>> temp->name;
cout<< "Enter Your Age :";
cin>> temp->age;
cout<< "Enter Your Address:";
cin>> temp->address;
cout<< "Enter Your Occupation";
cin >>temp->occupation;
}

关于c++ - 为什么在链接列表中链接之前需要填充数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59657840/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com