- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试读入一个文件并使用双向链表来存储数据并输出存储的数据。但是每当我运行我的程序时,它什么都不输出并终止。我编译代码没有错误。
带有预处理器指令和结构的头文件
#include <iostream>
#include <fstream>
using namespace std;
typedef struct sentry sentry;
struct stud
{
string term;
string title;
string description;
string tktNum;
string location;
string lecDay;
string instructor;
string labLoc;
string labDay;
string labInstruct;
string units;
string preReqs;
string grade;
};
struct slist
{
int length;
sentry *first;
sentry *last;
};
struct sentry
{
slist *list;
sentry *next;
sentry *prev;
stud *data;
};
void readFile(slist *&header);
我的 main.cpp 调用读取文件函数并输出
#include "header.h"
int main()
{
slist *header = NULL;
sentry *temp, *node;
temp = header->first;
readFile(header);
for(int i=0; i<header->length; ++i)
{
cout << node->data->term << endl;
cout << node->data->title << endl;
cout << node->data->description << endl;
cout << node->data->tktNum << endl;
cout << node->data->location << endl;
cout << node->data->lecDay << endl;
cout << node->data->instructor << endl;
cout << node->data->labLoc << endl;
cout << node->data->labInstruct << endl;
cout << node->data->units << endl;
cout << node->data->preReqs << endl;
cout << node->data->grade << endl;
node-> prev = header-> last;
node-> next = NULL;
temp = header -> last;
temp-> next = node;
header-> last = node;
node = temp->prev;
}
return 0;
}
我的 readFile 函数 - 它从文本文件中读取数据并将数据存储到链表中
#include "header.h"
void readFile(slist *&header)
{
ifstream fin;
sentry *node, *temp;
fin.open("data.txt");
while(!fin.eof())
{
if(header == NULL)
{
header = new slist;
header-> length = 0;
header-> first = NULL;
header-> last = NULL;
node = new sentry;
header-> first = node;
header-> last = node;
node-> prev = NULL;
node-> next = NULL;
}else
{
node = new sentry;
node-> prev = header-> last;
node-> next = NULL;
temp = header -> last;
temp-> next = node;
header-> last = node;
}
node->data = new stud;
getline(fin, node->data->term);
getline(fin, node->data->title);
getline(fin, node->data->description);
getline(fin, node->data->tktNum);
getline(fin, node->data->location);
getline(fin, node->data->lecDay);
getline(fin, node->data->instructor);
getline(fin, node->data->labLoc);
getline(fin, node->data->labDay);
getline(fin, node->data->labInstruct);
getline(fin, node->data->units);
getline(fin, node->data->preReqs);
getline(fin, node->data->grade);
header->length++;
}
}
我的data.txt文件(用来读取数据的文本文件)
Fall 2222
CS101
Computer Science Intro
12345
SCI546
MWF 1230PM
John Doe
SCI547
MWF 230PM
John Doe
4
N/A
B
Spring 111
English 101
Intro to English
6789
LI123
TTH 130PM
Jane Doe
N/A
N/A
N/A
N/A
3
N/A
A
最佳答案
slist *header = NULL;
你永远不会为 header
分配任何东西。 header
始终为 NULL
。另外最好称它为list
,而不是header
。你需要:
slist list;
您有其他未初始化的指针,例如 sentry *node;
除非它指向某物,否则您不能使用它。
您在某些部分使用了 C 风格的声明。 C类结构可以如下:
typedef struct sentry_t sentry; //in C
在 C++ 中,您可以简单地编写 struct sentry;
但你实际上并不需要这个。您需要以下结构:
struct stud
{
... as before
};
struct snode
{
stud data;
snode *next;
snode *prev;
};
struct slist
{
int length;
snode *head;
snode *tail;
};
slist
是双向链表,snode
是它的节点。
请注意,我更改了结构,现在 stud
包含在 snode
中,因此您无需使用 new
进行单独分配> (在实际应用中你必须释放所有的内存,你要避免不必要的分配)
现在您可以声明并初始化您的列表:
int main()
{
//declare and initialize the list
slist list;
list.head = NULL;
list.tail = NULL;
list.length = 0;
readFile(list);
snode *node = list.head;
for(int i = 0; i < list.length; i++)
{
cout << node->data.term << endl;
cout << node->data.title << endl;
cout << node->data.description << endl;
...
node = node->next;
cout << "\n";
}
return 0;
}
读取函数应该是这样的:
void readFile(slist &list)
{
ifstream fin("file");
while(fin.good())
{
snode *node = new snode;
if(list.head == NULL)
{
node->prev = NULL;
node->next = NULL;
list.head = node;
list.tail = node;
}
else
{
list.tail->next = node;
node->prev = list.head;
node->next = NULL;
list.tail = node;
}
getline(fin, node->data.term);
getline(fin, node->data.title);
getline(fin, node->data.description);
...
getline(fin, node->data.grade);
list.length++;
string blankline;
if(!getline(fin, blankline))
break;
}
}
使用 fin.good()
而不是 !fin.eof()
。请注意,您的文件中有一个空行。当它到达最后一行时,您想跳过它或中断循环。
关于c++ - 将文本文件读入双向链表并输出 - C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46923653/
我有 2 个类:User 和 UserPicture,它们具有 1:1 关系。 public class User { @Id @GeneratedValue(strategy=G
使用ssh转发时,我无法针对远程服务器使用cvs和ftp进行提交。是否可以让服务器对我的机器发起请求-我希望服务器上的Web应用程序调用我的机器上的REST方法。 谢谢。 尼古拉·G。 最佳答案 是的
我正在 Python 2.7.12 中实现双向 A* 算法,并在 Russell 和 Norvig 第 3 章的罗马尼亚 map 上进行测试。边具有权重,目的是找到两个节点之间的最短路径。 这是测试图
您能否建议一种映射或类似的数据结构,让我们可以轻松地相互获取值和键。也就是说,每个都可以用来寻找另一个。 最佳答案 Java 在其标准库中没有双向映射。 例如使用 BiMap 来自Google Gua
我想同步两个数据库运行时 服务器 A:安装了公共(public) IP 和 mysql 的 Amazon ec2。服务器B:这是局域网中带有mysql的私有(private)机器。 (IP是私有(pr
保存双向@OneToOne 映射时,hibernate 是否应该在两个表上都记录? 我有一个包含 applicant_id 列的表 interview,它引用了包含字段 interview_id 的
我喜欢新的 SwipeRefreshLayout!它看起来很棒,而且非常容易使用。但我想在两个方向上使用它。我有一个消息屏幕,我想通过从上到下滑动来加载旧消息,我想通过从下到上滑动来加载新消息。 这个
使用 ICS 4.0.1(愿意升级到 4.0.3)(不会 root 和重写 android 操作系统) 在接收到 android beam 后,是否可以将 NDEF 消息发送回 android 手机
我想知道处理这种 git 场景的最佳方法: Git 仓库:CoreProduct Git repo b: SpecificCustomerProduct 是从 a fork 出来的 到目前为止,我们一
这个问题在这里已经有了答案: How to implement an efficient bidirectional hash table? (8 个回答) 关闭2年前。 我在 python 中做这个
您能否推荐一种 map 或类似的数据结构,我们可以在其中轻松地从彼此获取值和键。也就是说,每个都可以用来寻找另一个。 最佳答案 Java 在其标准库中没有双向映射。 例如使用 BiMap 来自 Goo
Java中是否有类似双面列表的东西?也许第三方实现? 这里有一个小例子来证明我的想法。 原始状态: 答:0-1-2-3 | | | | 乙:0-1-2-3 删除 B 中的元素 1 后: 空值 | 答:
我有两个实体通过这样的双向 OneToOne 关联连接: @Entity class Parent { @NotNull String businessKey; @OneToO
我已将 Vagrant 配置为使用 Rsync 共享文件夹而不是(非常慢)vboxsf VirtualBox 默认提供的文件系统: Vagrant.configure("2") do |config|
@keyframes mgm { from { max-height: 250px; } to { max-height: 0px; } } .mgm {
我想了解有关使用双向 LSTM 进行序列分类时合并模式的更多详细信息,尤其是对于我还不清楚的“Concat”合并模式。 根据我对这个方案的理解: 在将前向和后向层的合并结果传递到 sigmoid 函数
我有兴趣将本地 git 存储库设置为远程存储库的镜像。我已经阅读了一些可能相关的帖子,但主要区别在于我需要对两个存储库进行读写访问。 大多数时候,用户会针对 Repo A 工作,但是有时他们会针对 R
我已经仔细阅读了文档 https://firebase.google.com/docs/database/web/read-and-write以及网上很多例子。但这里有一个脱节:在将对象添加到数据库时
这个问题已经有答案了: Hibernate bidirectional @ManyToOne, updating the not owning side not working (3 个回答) 已关闭
我知道有很多关于它的问题,但我找不到针对我的问题的好的答案。 我使用 Jboss 作为 7,Spring 和 Hibernate (4) 作为 JPA 2.0 提供程序,因此我有简单的 @OneToM
我是一名优秀的程序员,十分优秀!