大家好,我正在尝试将旧代码从 C 传输到 C++ 以进行分配……我必须手动实现一个链表,所以我不能使用 STL 容器,否则我已经完成了这个……
这是我的链接列表:
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
struct Video {
char video_name[1024]; // video name
int ranking; // Number of viewer hits
char url[1024]; // URL
Video *next; // pointer to Video structure
} *head = NULL; // EMPTY linked list
这是读入的代码:
void load()
{
struct Video *temp;
temp = (Video*)malloc(sizeof(Video)); //allocate space for node
temp = head;
ifstream myfile ("Ranking.dbm");
if (myfile.is_open())
{
string line;
while ( myfile.good() )
{
myfile.getline(temp->video_name,1024);
myfile >> temp->ranking;
getline(myfile, line); // need to skip 'ranking's
// unread new-line
myfile.getline(temp->url,1024);
temp = temp->next;
}
head = NULL;
myfile.close();
}
else cout << "Unable to open file";
return ;
}
它正在从如下所示的文本文件中读取Ranking.dbm
:
bagheera
20
bagheera.com
sushi
60
sushi.com
wicket
99
wicket.com
teek
100
teek.com
基本上每组 3 行都应该加载到一个Video
结构中,该结构将成为链表中的一个新节点。
由于我无法控制的情况,我在这个项目中使用 XCode。我的问题是为什么我会收到这个错误。我认为 EXC_BAD_ACCESS 主要是一个 Objective-C 错误......?