gpt4 book ai didi

c - Scandir自带过滤功能

转载 作者:太空宇宙 更新时间:2023-11-04 08:12:52 27 4
gpt4 key购买 nike

我必须编写 2 个函数,filter - names > 5 个字符,并且我必须按类型对它们进行排序。

Filtr 函数应该是这样的?

int (* filter) (const struct dirent* entry) {

if ( (strlen(entry>d_name) - 1 ) > 5 ) {
return entry;
}
}

如何排序,在 dirent 的 dirent->d_type 中,但是如何排序?

最佳答案

您是否考虑过查看 man 3 scandir 页面?

(我发现 Linux man-pages project 手册页是 C 库和系统级编程的最新版本。)

如果我们有一个函数需要调用者指定一个辅助函数,我们的函数应该调用它来完成一些任务,我们将它声明为一个函数指针。换句话说,虽然 scandir() 函数的原型(prototype)是

int scandir(const char *dirp, struct dirent ***namelist,
int (*filter)(const struct dirent *),
int (*compar)(const struct dirent **, const struct dirent **));

过滤和比较函数的原型(prototype)实际上是

int myfilter(const struct dirent *);
int mycompar(const struct dirent **, const struct dirent **);

功能的愚蠢实现(不满足您的练习要求)可能是例如

int myfilter(const struct dirent *entry)
{
/* man 3 scandir says "entries for which filter()
* returns nonzero are stored".
*
* Since file names in Linux are multibyte strings,
* we use mbstowcs() to find out the length
* of the filename in characters.
*
* Note: strlen() tells the filename length in bytes,
* not characters!
*/
const size_t len = mbstowcs(NULL, entry->d_name, 0);

/* Keep filenames that are 3 or 7 characters long. */
return (len == 3) || (len == 7);
}

int mycompar(const struct dirent **entry1, const struct dirent **entry2)
{
const size_t len1 = mbstowcs(NULL, (*entry1)->d_name, 0);
const size_t len2 = mbstowcs(NULL, (*entry2)->d_name, 0);

/* Compare by file name lengths (in characters),
* sorting shortest file names first. */
return (int)((ssize_t)len1 - (ssize_t)len2);
}

使用POSIX.1-2008写代码时,记得加上

#define _POSIX_C_SOURCE 200809L

在任何 #include 秒之前。为了使您的代码在不同的环境中正常工作(例如,在我们世界各地的任何 Linux 系统中计算文件名中的字符而不是字节),还有 #include <locale.h> ,并添加

setlocale(LC_ALL, "");

在你读/扫描或写/打印任何东西之前,在你的 main() 中。 (尽管可以做更多的事情来进一步本地化他们的程序,但以上通常就足够了。处理文本文件应该使用宽字符串 (L"This is a ωide §tring liteℛal 😃") 和 wchar_twint_t 类型的字符串和字符,具有宽字符串 I/O 函数。它并不比在愚蠢的 中做更复杂或更难正确地做,二十七个 ASCII 字母对每个人来说都足够了,即使它让你用您的母语将名字变成脏话”

如果你的老师没有提到这些,你应该问为什么。无法正确处理文件或文本 Nöminäl Änimäl needs more €, and cowbell 的程序在当今时代不应该被接受。在学习正确的方法之前,无需先学习错误的方法,因为正确的方法和错误的方法一样简单。

关于c - Scandir自带过滤功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37971949/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com