gpt4 book ai didi

C++:从文件中读取数据以填充链表

转载 作者:行者123 更新时间:2023-11-28 05:10:45 24 4
gpt4 key购买 nike

我正在尝试获取一个包含 8 行的 .dat 文件,第一行是记录数,其余 7 行包含将填充链表的记录数据。

我遇到的问题是我的代码只填充第一条记录,但使用 cout 我知道它遍历整个文件。这是我正在使用的代码片段:

fstream listBuilder;
listBuilder.open("HW06.dat");

if ( listBuilder.is_open() ) {
TeleType *current;
current = listHead;

listBuilder >> numberOfRecords;

while ( listBuilder ) {
string firstName;
string lastName;
string phone;
string name;

listBuilder >> firstName >> lastName >> phone;

name = firstName + " " + lastName;
current->name = name;
current->number = phone;

current = current->nextaddr;
current = new TeleType;
}

listBuilder.close();
} // end if
else {
cout << "***** Error: File failed to open. *****" << endl;
} // end else

最佳答案

你应该先创建下一个节点然后指向它,而不是相反!!

current->nextaddr = new TeleType; 
current = current->nextaddr;

关于C++:从文件中读取数据以填充链表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43551622/

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