所以,我在这里的第一个问题,请耐心等待我:
我的任务是对结构数组(姓氏,姓氏和生日的另一个结构,包括年,月,日)进行排序。我必须按生日和使用qsort排序。 我的问题是,我查找了有关qsort的所有内容,但我不太确定我的实现是否正确,因为我是C的新手。我可以创建可执行程序,但它不会给我任何结果只有Segmentation Fault。
这是我的代码:
#include <stdio.h>
#include <stdlib.h>
typedef int (*compfn) (const void*, const void*);
typedef struct {
unsigned year, month, day;
} date_t;
typedef struct {
char name[32];
char surname[32];
date_t birthday;
}person_t;
typedef struct {
unsigned n;
unsigned cap;
person_t *arr;
} persons_t;
int compare(person_t *a, person_t *b){
if(a->birthday.year!=b->birthday.year){
return a->birthday.year-b->birthday.year;
}else{
if(a->birthday.month!=b->birthday.month){
return a->birthday.month-b->birthday.month;
}else{
return a->birthday.day-b->birthday.day;
}
}
}
int main(int argc, char* argv[])
{
if (argc <= 1) {
fprintf(stderr, "syntax: %s <inputfile>\n", argv[0]);
return 1;
}
FILE* f = fopen(argv[1], "rt");
if (f == NULL) {
fprintf(stderr, "cannot open file %s\n", argv[1]);
return 1;
}
persons_t persons;
persons.n = 0;
persons.cap = 0;
persons.arr = NULL;
person_t p;
while (fscanf(f, "%s %s %4u-%2u-%2u", p.name, p.surname,
&p.birthday.year, &p.birthday.month, &p.birthday.day) == 5) {
if (persons.n == persons.cap) {
persons.cap = persons.cap == 0 ? 1 : 2 * persons.cap;
persons.arr = realloc(persons.arr, persons.cap * sizeof(persons.arr[0]));
}
persons.arr[persons.n++] = p;
}
int nitems = persons.cap*sizeof(persons.arr[0]);
int size = sizeof(persons.arr[0]);
qsort(persons.arr, nitems, size, (compfn)compare);
for (unsigned i = 0; i < persons.n; i++) {
person_t *p = persons.arr + i;
printf("%s %s %4u-%2u-%2u\n",
p->name, p->surname,
p->birthday.year, p->birthday.month, p->birthday.day);
}
fclose(f);
return 0;
}
我希望有人可以帮助我, 在此先感谢;)
答案 0 :(得分:1)
因此,您可以使用persons.cap在需要时通过将其大小加倍来分配我们的数组,但是您没有填充其所有元素,是吗?
从您的代码中,实际人数是nitems = persons.n,而不是person.cap。如果您使用nitems = persons.n重试代码该怎么办?
如果数组中有未填充的元素,则表示其中的字符串是任意的(即person.name),因此可能不会以空值终止,并且当您尝试显示它们时会发生崩溃。
答案 1 :(得分:1)
就_t
- 后缀标识符而言,根据C标准,它们是为实现保留的(例如您的编译器和/或标准库)。您的实现很可能已经具有date_t
类型,并且您的代码可能会导致某种恶作剧。如果你想避免巧妙地和危险地冲突标识符造成各种各样的破坏,最好避免它们。不用担心,您可以随时使用“_s
”来表示struct
类型!
每当您声明一个表示数组中索引的变量时,请使用size_t
作为类型!
int compare(person_t *a, person_t *b){
...
qsort(persons.arr, nitems, size, (compfn)compare);
根据qsort manual,作为比较器函数给出的参数应该是int (*compar)(const void *, const void *)
,这就是你投射到(compfn)
后所给出的。至于qsort
知道函数接受两个const void *
参数,这些参数在表示方式上可能与person_t *
参数不同。这肯定会导致段错误。不要对compare
的类型撒谎。将其更改为更像:
int compare(const void *x, const void *y) {
const person_s *a = x, *b = y;
/* ... */
}
...并且您不需要演员或 typedef。
接下来,返回该函数的返回值。我已经使用了实现,其中词汇不合逻辑的返回值会导致分段错误。例如,如果是a <= b
和b <= c
,那么a <= c
,但您的代码并不能保证这一点。事实上,使用您的代码可能会a <= b
,b <= c
和a > c
。我建议确保您的代码保证返回值和词法顺序之间的对应关系。您可以通过返回1表示大于0,0表示等于或-1表示小于。
#define lexical_order(x,y) ((x > y) - (x < y))
int compare(const void *x, const void *b){
const person_s *a = x, *b = y;
return a->birthday.year != b->birthday.year ? lexical_order(a->birthday.year, b->birthday.year)
: a->birthday.month != b->birthday.month ? lexical_order(a->birthday.month, b->birthday.month)
: lexical_order(a->birthday.day, b->birthday.day);
}
我确定你知道你应该检查realloc
的返回值...例如:
void *temp = realloc(persons.arr, persons.cap * sizeof(persons.arr[0]));
if (temp == NULL) { /* If we don't check return value prior *
* to assigning to persons.arr, we *
* might leak some memory... */
puts("Error in realloc");
free(persons.arr);
exit(-1);
}
persons.arr = temp;
最后,也是最重要的(这可能是你的错误),你确定吗?
int nitems = persons.cap*sizeof(persons.arr[0]);
如果您想将此项目作为项目数量传递给qsort
(通常情况下),那么我认为应该是:
size_t nitems = persons.n;
P.S。如果您第二次错过它,您应该审核您的代码,以确保您只使用size_t
来存储数组索引。
P.P.S。不要忘记在程序结束时使用free(persons);
,因此当您使用valgrind
时,您不会收到内存泄漏报告......
P.P.P.S。 valgrind
太棒了!