如何用C语言实现qsort

发布于 2024-08-21 19:16:39 字数 568 浏览 5 评论 0原文

我需要在 C 中实现 qsort 并按相反的字典顺序排序。我对如何创建和调用比较函数感到困惑。这就是我到目前为止所拥有的..

qsort (strArr, numLines, sizeof(char*) , sort);

int sort(const void * str1, const void * str2) {
 return (-1) * strcasecmp((char*) str1, (char*) str2);
};

Eclipse 在 qsort 行上告诉我“'sort'未声明(在此函数中首次使用)”,但我担心这不是我唯一的问题。有什么建议吗?

谢谢, Hristo

修订版...这就是我的数组的样子:

char **strArr = malloc(numLines * sizeof(char*));
fgets(output, 256, sourceFile);
strArr[i] = malloc(((int) strlen(output) + 1) * sizeof(char));
strcpy(strArr[i],output);

I need to implement qsort in C and sort in reverse lexicographical order. I'm confused on how to create and call the comparison function. This is what I have so far..

qsort (strArr, numLines, sizeof(char*) , sort);

int sort(const void * str1, const void * str2) {
 return (-1) * strcasecmp((char*) str1, (char*) str2);
};

Eclipse is telling me "'sort' undeclared (first use in this function)" on the qsort line, but I fear that's not my only problem. Any advice?

Thanks,
Hristo

Revision... this is what my array looks like:

char **strArr = malloc(numLines * sizeof(char*));
fgets(output, 256, sourceFile);
strArr[i] = malloc(((int) strlen(output) + 1) * sizeof(char));
strcpy(strArr[i],output);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↘紸啶 2024-08-28 19:16:39

您需要在使用它之前声明 sort:

int sort(const void * str1, const void * str2);

那么比较可能是:

return strcasecmp(*(char * const *)str2, *(char * const *)str1);

正如 @Chris Jester-Young 指出的,您可以交换参数来反转比较。

指针必须取消引用......

you would need to declare sort before using it:

int sort(const void * str1, const void * str2);

then the comparison might be:

return strcasecmp(*(char * const *)str2, *(char * const *)str1);

As @Chris Jester-Young points out you can swap the args to reverse the comparison.

the pointers have to be dereferenced...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文