作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个从 .txt 文件加载数据的函数,但当它运行时,我总是收到段错误(核心转储)错误。该文件包含未知数量的行,而每行都有一个字符串和一个由制表符分隔的整数。list_create 函数只是创建一个数据结构。 while循环最后删除了数据结构,我没有包含代码,因为我确信它不会导致问题,但我也想表明我正在释放数据结构。值得一提的是,什么时候使用gdb,我得到:
Program received signal SIGSEGV, Segmentation fault.
0x0000555555554c46 in load (filename=0x7fffffffe2ab "students.txt",
l=0x555555757260) at Student.c:92
92 tmp->next=malloc(sizeof(struct _node));
我尝试用其他东西改变feof,使用或不使用ferror,并将fopen的模式更改为r而不是a。
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#define MAXSTRING 50
typedef struct{
char name[MAXSTRING];
int id;
} student;
typedef struct _node* node;
typedef struct _list* list;
struct _node {
student data;
node next;
};
struct _list {
node head;
int size;
};
list list_create(){
list l=(list) malloc(sizeof(struct _list));
assert(1);
l->head=NULL;
l->size=0;
return l;
}
void load(char*filename,list l){
FILE *fd=fopen(filename,"r");
node tmp=l->head;
if(fd==NULL){
printf("Error trying to open the file\n");
abort();
}
else{
while(!feof(fd)&&!ferror(fd)){
fscanf(fd,"%s\t%d\n",tmp->data.name,&tmp->data.id);
tmp->next=(node)malloc(sizeof(struct _node));
assert(tmp->next);
tmp=tmp->next;
l->size++;
if (tmp==NULL){
printf("Error trying to allocate memory\n");
abort();
}
}
}
tmp->next=NULL;
fclose(fd);
}
int main(int argc,char *argv[]){
list l=list_create();
if(argc!=2){
printf("Input Error\n");
}
load(argv[1],l);
\*Some code*\
while (!list_empty(l)){
list_freenode(list_deletefirst(l));
}
free(l);
return 0;
我希望成功加载文件,能够编辑其组件并保存它们。
最佳答案
您的段错误可能是由于您的函数 list_create()
分配一个数据结构,但您的函数 load()
填充了与行一样多的数据结构,从而将数据写入未分配的空间。
关于加载文件时的核心转储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56532808/
我是一名优秀的程序员,十分优秀!