- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在努力创建一个函数,它接受一个路径并读取其中的所有文件并创建一个链接列表。阅读目录效果很好,但我很难创建相关信息并将其存储在链表中以备后用。
这是我目前使用的结构:
typedef struct searchPool searchPool;
struct searchPool{
char * path;
char * fileName;
char *pathFile;
searchPool * next;
};
创建“SearchPool”类型的新元素的函数定义如下:
searchPool * mallocStructPool (char * path, char * fileName, char * filePath ) {
searchPool * element = (searchPool*)malloc(sizeof(searchPool));
element->path = malloc(sizeof(char * ));
element->fileName = malloc(sizeof(char * ));
element->pathFile = malloc(sizeof(char * ));
element->path = path;
element->fileName = fileName;
element->pathFile = filePath;
element->next = NULL;
return element;
}
最后,获取列表头部的递归函数是这样写的(如果向右滚动代码注释):
void listDir(char * path, searchPool * head){
DIR * d = opendir(path); // open the path
searchPool * element; // create new Element of type SearchPool
struct dirent * dir; // for the directory entries
while ((dir = readdir(d)) != NULL) { // if we were able to read somehting from the directory
if(dir-> d_type != DT_DIR) { // if the type is not directory just print it with blue
char * s = malloc(sizeof(char*)+1); // variable to concatenate
s = concat(path, dir->d_name); // concatenate path and filename together
//printf("%s\n",s);
element = mallocStructPool(dir->d_name, path, s); // malloc new element and set variables
head->next = element;
element->next = NULL;
free(s);
} else
if(dir -> d_type == DT_DIR && strcmp(dir->d_name,".")!=0 && strcmp(dir->d_name,"..")!=0 ) {// if it is a directory
char d_path[255]; // here I am using sprintf which is safer than strcat
sprintf(d_path, "%s/%s", path, dir->d_name);
listDir(d_path, element); // recall with the new path
}
}
closedir(d); // finally close the directory
}
问题是当函数 listDir() 被调用时,它最终只打印我在参数中给它的第一个路径,其余的被忽略。每次运行后是否必须在 listDir() 中返回新元素?我看不出哪里错了。
感谢任何帮助。感谢您的宝贵时间。
最佳答案
您的代码没有意义。您不需要分配一个结构和他的成员。加上不要cast the return of malloc .您不检查 malloc()
的返回值。而且您不复制字符串。
在您的第二个函数中,您应该返回链表并检查 opendir()
的返回函数。
举个例子:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dirent.h>
typedef struct searchPool searchPool;
struct searchPool {
char *path;
char *fileName;
char *pathFile;
searchPool *next;
};
static searchPool *mallocStructPool(char *path, char *fileName) {
searchPool *element = malloc(sizeof *element);
if (element == NULL) {
goto error;
}
size_t path_size = strlen(path);
element->path = malloc(path_size + 1);
if (element->path == NULL) {
goto free_element;
}
size_t fileName_size = strlen(fileName);
element->fileName = malloc(fileName_size + 1);
if (element->fileName == NULL) {
goto free_path;
}
element->pathFile = malloc(path_size + 1 + fileName_size + 1);
if (element->pathFile == NULL) {
goto free_fileName;
}
memcpy(element->path, path, path_size);
element->path[path_size] = '\0';
memcpy(element->fileName, fileName, fileName_size);
element->fileName[fileName_size] = '\0';
memcpy(element->pathFile, path, path_size);
element->pathFile[path_size] = '/';
memcpy(element->pathFile + path_size + 1, fileName, fileName_size);
element->pathFile[path_size + 1 + fileName_size] = '\0';
return element;
free_fileName:
free(element->fileName);
free_path:
free(element->path);
free_element:
free(element);
error:
return NULL;
}
searchPool *listDir(char *path);
static searchPool *listDir_aux(char *path, struct dirent *dirent) {
if (dirent->d_type == DT_DIR && dirent->d_type != DT_LNK &&
strcmp(dirent->d_name, ".") != 0 && strcmp(dirent->d_name, "..") != 0) {
size_t path_size = strlen(path);
size_t name_size = strlen(dirent->d_name);
char *d_path = malloc(path_size + 1 + name_size + 1);
if (d_path == NULL) {
return NULL;
}
memcpy(d_path, path, path_size);
d_path[path_size] = '/';
memcpy(d_path + path_size + 1, dirent->d_name, name_size);
d_path[path_size + 1 + name_size] = '\0';
searchPool *ret = listDir(d_path);
free(d_path);
return ret;
}
return mallocStructPool(path, dirent->d_name);
}
searchPool *listDir(char *path) {
printf("%s\n", path);
DIR *dir = opendir(path);
if (dir == NULL) {
perror("dir()");
return NULL;
}
searchPool *head = NULL;
struct dirent *dirent;
while ((dirent = readdir(dir)) != NULL) {
searchPool *elem = listDir_aux(path, dirent);
if (elem != NULL) {
elem->next = head;
head = elem;
}
}
closedir(dir);
return head;
}
int main(void) {
searchPool *head = listDir("/tmp");
searchPool *tmp;
for (searchPool *elem = head; elem != NULL; elem = tmp) {
printf("%s, %s, %s\n", elem->path, elem->fileName, elem->pathFile);
free(elem->path);
free(elem->fileName);
free(elem->pathFile);
tmp = elem->next;
free(elem);
}
}
关于c - C 中的递归和链表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41652821/
今天我们将开始第二个数据类型-链表的学习,同样我们还是用最原始的方式,自己申请内存管理内存来实现一个链表。 01、01、定义 什么是链表?链表在物理存储结构上表现为非顺序性和非连续性,因此链表
前言:笔记是参考B站up主尚硅谷,图片、代码都是哦。在blog写笔记~(图片、代码来源尚硅谷,侵权必删!) 尚硅谷数据结构学习路线B站网站:https://www.bilibili.com/video
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
我想创建一个没有全局变量的单个链表。我用 NULL 初始化了第一个元素,然后想将第一个元素 node 复制到 list_。它被复制到函数中,但副作用不起作用。在我的主函数中,该值仍然是NULL。如果我
我正在尝试使链表与此处的链表相似: linked list in C 那就是在另一个结构中有“头”,我首先称它为“头”。但是我发现做那个改变。很难向 list_item 结构添加值。我已经尝试了一些东
我正在尝试理解链表的代码。我明白他们是如何工作的。我正在查看一些与动态内存和链表有关的代码,我在此处对其进行了简化: #include #include typedef struct nod
有人可以解释下面的代码吗?我是 C 的新手,正在努力弄清楚。为什么我们最后有 queueNodeT? typedef char queueElementT; typedef struct queueN
场景如下:- 我想反转单链表的方向,换句话说,反转后所有指针现在应该指向后.. 这个算法应该需要线性时间。 我想到的解决方案是使用另一个数据结构 A Stack.. 借助它可以轻松反转单向链表,所有指
在 python 中使用链表最简单的方法是什么?在 scheme 中,链表由 '(1 2 3 4 5) 定义。 Python 的列表 [1, 2, 3, 4, 5] 和元组 (1, 2, 3, 4,
本文首发公众号:小码A梦 一般数据主要存储的形式主要有两种,一种是数组,一种是链表。数组是用来存储固定大小的同类型元素,存储在内存中是 一片连续 的空间。而链表就不同于数组。链表
虽然之前有人问过关于链表与数组的问题,但答案大多归结为我们大多数人在某个时候可能已经学到的东西: 列表擅长插入和删除 数组擅长随机访问 现在像 Bjarne Stroustrup 这样受人尊敬的人有
位置 在堆中,碎片化(每个节点的 malloc) - 在几种不同的方式(缓慢分配,缓慢访问,内存碎片)方面效率低下 在堆中,在一个大块中 - 当需要重新分配 时,数据结构获得的所有灵活性都将丢失 在堆
我完成了泛型的学习,但并不容易。不过,我确实明白了。这是我的理解。我希望您纠正我的错误并回答几个问题:)。 public class LinkedList { //class definition }
我将如何创建一个链接列表来在 OCaml 中保存我的数据?我正在尝试制作一个单链表,但是我遇到了语法问题。我只想制作一个模块来简单地从链表中获取'a,插入'a或删除'a。 有人知道吗? 最佳答案 正如
我在使用这段代码时遇到了问题,我不确定我做错了什么 #include #include #include #include typedef struct flight_struct{
我正在创建一个函数来删除给定列表的最后一个节点(作为参数输入)。该函数本身非常简单,如下所示。 function popBack(list) { var current = list.head
我正在尝试开发一种方法,该方法将在链接列表中的当前节点之前插入传递给它的节点。它有3个条件。对于此实现,不能有任何头节点(仅对列表中第一个节点的引用),并且我无法添加更多变量。 如果列表为空,则将传递
使用 scala,我已将大约 100000 个节点添加到链表中。当我使用函数 length 时,例如 mylist.length。我收到“java.lang.StackOverflowError”错误
所以我正在学习处理链表。我将如何递归地添加节点内的项目。我可以通过执行 sum = h.item +h.next.item+h.next.next.item 添加它们,但这只有在我有小的链接列表时才有
所以我一直在努力理解链表的概念(一直在看一些示例代码,我在互联网上找到了这个。现在如果我能请别人确认我是否正确掌握了一些概念。我将绘制图表,说明我认为每个代码链接的作用。 #include #inc
我是一名优秀的程序员,十分优秀!