在 C 语言中逐行将文本文件保存到链表中



我需要将文本文件逐行保存到链表中,然后显示保存的元素。 这是我尝试过的:

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
typedef struct node 
{
char data;
struct node *next;
}Element, *List;
List init(void);
int main (){
List current, head, newnode;
FILE *f = fopen("text.txt", "r");
head = current = NULL;
while (getc(f) != EOF){
newnode = malloc(sizeof(Element));
fgets(&newnode -> data, sizeof(newnode), f);
newnode -> next = NULL;
if(head == NULL){
head = current = newnode;
}
else{
current -> next = newnode;
current = newnode;
}
}
current = head;
while(current != NULL){
printf("%s", &current -> data);
current = current -> next;
}
fclose(f);
return 0;
}

文字是:

I stand amid the roar
Of a surf-tormented shore
And I hold within my hand
Grains of the golden sand
How few! yet how they creep
Through my fingers to the deep
While I weep while I weep
O God can I not grasp
Them with a tighter clasp
O God can I not save
One from the pitiless wave
Is all that we see or seem
But a dream within a dream

但到目前为止,我得到的是:

stnd midtheroa
f asur-tomened hor
nd  hod wthi myhan
rais o th godensan
ow ew!yethowthe crep
hrogh y fnges t th dep
hil I eepwhie Iwee
Go ca I ot ras
hemwit a igher las
Go ca I ot aveOnefro th piiles wve
s al tat e se o sem
ut  dram ithn adrem

它跳过了一些字符,我认为原因是 fgets 每次都会读取一定数量的字符。但是我找不到解决方案来使其达到应有的状态,而且我对链表概念还不是很好。 我非常感谢任何帮助和建议,使它发挥作用,并将坡先生从这种胡说八道中拯救出来。 PS:应该使用C90来完成,因此禁用了一些功能。

注释中的注释:getc从输入流中读取一个字符。您需要检查输入流是否以其他方式位于文件末尾。

您使用的是单个char,而不是char数组。请使用char data[51];fgets(newnode->data, sizeof(newnode->data), f);printf("%s", current->data);

相关内容

  • 没有找到相关文章

最新更新