程序从文件中逐行读取并在结构中存储信息。一切都有效,除了排序结构数组。例如,在我打印结构的最后(结尾包含的代码),它完全正常。
当我调用qsort时会出现问题(分段错误)。
此外,打印学生[0] .lastName工作正常,但打印学生[1] .lastName返回一个(null),这也令人困惑。
我到处寻找,我的代码看起来非常类似于已经发布的排序结构的正确解决方案,所以我很困惑。
在main标题中定义struct:
// DEFINE STRUCT
typedef struct _StudentInformation {
int term;
int studentId;
char *lastName;
char *firstName;
char *subject;
int catalogNumber;
char *section;
} StudentInformation;
在main方法中分配结构(STUDENT_DATA = 50):
// ALLOCATE AN ARRAY OF STUDENTS (STRUCT)
StudentInformation *students;
if ((students = malloc(STUDENT_DATA*sizeof(StudentInformation)))==NULL) {
scanf("Error can't allocate enough students!\n");
exit(1);
}
问题:调用quicksort(8的原因是因为有8个条目工作且已加载,甚至少于8个不起作用)。:
qsort(students, 8, sizeof(StudentInformation), comparator);
快速排行比较器:
int comparator (const void * a, const void * b) {
StudentInformation *s1 = (StudentInformation*)a;
StudentInformation *s2 = (StudentInformation*)b;
return strcmp(s1->lastName, s2->lastName);
}
我知道数据加载正常的原因是因为打印工作完全正常:
void printInformation (StudentInformation *students) {
// PRINT EVERYTHING
while(students->firstName!=NULL) {
printf("%-s, %s %15d %4d %4s%d %7s\n",
students->lastName,students->firstName,students->term,
students->studentId, students->subject,students->catalogNumber,
students->section);
// Increment
students=students+sizeof(StudentInformation);
}
}
打印的内容(我只打印了8张中的2张,没有打印NULLS):
Castille, Michael Jr 1201 103993269 CSE230 R03
Boatswain, Michael R. 1201 105515018 CSE230 R01
谢谢!
答案 0 :(得分:5)
该行:
if ((students = malloc(STUDENT_DATA*sizeof(StudentInformation)))==NULL)
为结构本身分配内存,但不为指针引用的字符串分配内存:
char *lastName;
char *firstName;
char *subject;
char *section;
每个占用足够的内存用于指针。您需要分别为字符串分配内存:
if ((lastName = malloc((LAST_NAME_LEN + 1) * sizeof(char))) == NULL) {
// Error
}
if ((firstName = ...
写入你不拥有的内存总是一个很好的方法来获得调试ricochet-errors的意外课程:你最终可能会遇到段错误或内存损坏,但它可能在代码区域中似乎与问题的实际根源完全无关。
答案 1 :(得分:1)
如果STUDENT_DATA> = 8,则只有一种可能的解释,即一个或多个lastName
字段从未初始化并包含NULL或垃圾。如果初始化这些字段的循环包含与循环打印出来的相同的错误(使用students=students+sizeof(StudentInformation)
而不是students++
),那就是原因。
答案 2 :(得分:0)
你说Calling quicksort (the reason for the 8 is because there are 8 entries
。
这是不正确的。你应该传递数组中的元素数量(STUDENT_DATA
)。