gpt4 book ai didi

c - 附加到链接列表时进行不必要的更改

转载 作者:行者123 更新时间:2023-11-30 16:11:29 25 4
gpt4 key购买 nike

我已经设法让链表发挥作用,因为它可以在其中创建一个列表存储变量,但现在我遇到了另一个问题,我一直无法找到解决方案。每当我通过要存储的变量列表运行它时,它都会运行该列表并创建正确数量的节点,但字符串变量在每次追加后不断变化。
例如,如果我运行:

"Dog" "cat" "house"

而不是所需的输出:

Dog
cat
house

它产生

house
house
house

我不确定为什么它会继续这样做,而且我似乎无法确定头节点字符串被更改的位置,除了列表为空的第一个实例,因此需要分配一个新的头。

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <dirent.h>
#include <string.h>
#include <sys/stat.h>


#define EMPTY NULL;

typedef struct listnode{
struct listnode* next;
char* fileName;
} listnode;

struct listnode* head;

//This section of code will be dedicated to the creation and management
//of the listnode functions

listnode* createNode(char* str, listnode* next){
listnode* tempo;
tempo = (listnode*)malloc(sizeof(struct listnode));

if(tempo == NULL){
printf("Error creating space for new node.\n");
exit(0);
}

tempo->fileName = str;
tempo->next = next;

return tempo;
}

listnode* append(listnode* head, char* str){
listnode* temp;
listnode* curr;

temp = createNode(str, NULL);

if(head == NULL){
head = temp;
return head;
}
else{
curr = head;
while(curr->next != NULL){
curr = curr->next;
}
curr->next = temp;
return head;
}
}

void printNames(listnode* head){
listnode* curr= head;

while(curr !=NULL){
printf("%s \n", curr->fileName);
curr = curr->next;
}
}

void list_free(listnode* head){
listnode* current;
listnode* temp;

if(head != NULL){
current = head->next;

if(head !=NULL){
current = head -> next;
head ->next = NULL;
while(current != NULL){
temp = current -> next;
free(current);
current = temp;
}
}
}
free(head);
}


int main(int argc, char **argv){
char *current_dir = NULL;
DIR *direct_ptr = NULL;
struct dirent *dir_ptr = NULL;
unsigned int fileNum = 0;
int c;
listnode* head = NULL;

current_dir = getenv("PWD");
if(NULL == current_dir){
printf("\n Error: Couldn't grab current directory.\n");
return -1;
}

direct_ptr = opendir((const char*)current_dir);
if(NULL == direct_ptr){
printf("\n Error: couldn't open current directory\n");
return -1;
}


for(fileNum=0; NULL != (dir_ptr = readdir(direct_ptr)); fileNum++){
if(dir_ptr->d_name[0] != '.'){
head = append(head, dir_ptr->d_name);
}
}
printNames(head);
}

最佳答案

在 C 中,数组(例如字符串)不是按值传递的。相反,它们是通过指针传递的。当您指定 char 数组作为函数参数时,数组 decays to a pointer .

因此,您必须

  1. 确保 listnode 结构体成员 filename 指向的字符串保持有效且未被覆盖,或者
  2. 将字符串的副本存储在 listnode 结构中。

为了复制字符串,您可以使用函数 strcpy 。但是,您必须为 listnode 结构中的 char 数组分配足够的空间,或者必须使用动态内存分配(例如 malloc)并存储指向动态分配的内存的指针。

关于c - 附加到链接列表时进行不必要的更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58597748/

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