我试图创建一个字符串列表,从.txt文件中读取单词。我的代码只在.txt文件包含少量单词时才起作用,我不明白为什么,我认为这是代码内存分配的问题。
#include <stdio.h>
#include <stdlib.h> struct s_nodo {
char* word;
struct s_nodo*sig; }; typedef struct s_nodo* t_nodo;
void add (t_nodo*,char*); void print(t_nodo);
int main() {
char aux[30];
t_nodo lista=NULL;
FILE*fd;
fd=fopen("c:\\texto.txt","r");
while(!feof(fd))
{
fscanf(fd,"%s",aux);
add(&lista,aux);
}
print(lista);
return 0; }
void add (t_nodo*lista,char *aux) {
if(*lista==NULL)
{
*lista=malloc(sizeof(t_nodo));
(*lista)->word=malloc((strlen(aux+1))*sizeof(char));
strcpy((*lista)->word,aux);
(*lista)->sig=NULL;
}
else add (&(*lista)->sig,aux);
}
void print (t_nodo lista) {
if(lista!=NULL)
{
printf("-%s-",lista->word);
print(lista->sig);
}
}
最佳答案
你的编码风格导致了这个错误
(*lista)->word=malloc((strlen(aux+1))*sizeof(char));
// ^
不要使用
sizeof(char)
,因为它是1,而且是强制性的,它只是帮助您忽略了这个问题。使用更多的空白区域,这将很容易在你眼前分离标记。
在使用指针之前,请始终检查
malloc()
是否未返回NULL
。所以应该是
(*lista)->word = malloc(strlen(aux) + 1);
你现在明白了吧?
关于c - 从.txt文件创建字符串列表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35207269/