gpt4 book ai didi

c - 在 C 中的节点之间交换字符串

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

我试图在链表中的节点之间交换数据字段,但在交换 char 数组时遇到了问题。这只是该程序的一个示例。

struct node {
int count;
char word[50];
struct node *next;
};

void swap_nodes( struct node *first, struct node *second ) {
int temp_count;
char *temp_word;

temp_count = first->count;
temp_word = first->word;
first->count = second->count;
first->word = second->word;
second->count = temp_count;
second->word = temp_word;
}

让我知道我做错了什么,我对用 c 语言写作很陌生。

最佳答案

当你将一个字符数组赋给一个指针时,你并没有复制这个数组:

char *temp_word;
temp_word = first->word;

temp_word 指向数组的初始元素,因此分配给数组也会更改指针指向的数据。

您可以通过声明一个包含 50 个字符的数组并使用 strcpymemcpy 进行复制来解决此问题:

char temp_word[50];
memcpy(temp_word, first->word, sizeof(temp_word));
memcpy(first->word, second->word, sizeof(temp_word));
memcpy(second->word, temp_word, sizeof(temp_word));

关于c - 在 C 中的节点之间交换字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26007223/

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