gpt4 book ai didi

c - 向链表添加元素(C)

转载 作者:太空宇宙 更新时间:2023-11-04 05:17:50 24 4
gpt4 key购买 nike

我想创建一个链接列表,以后可以添加更多元素,但当前代码的问题是所有先前的元素都被最后添加的元素覆盖。这是我的代码:

#include<stdio.h>
#include<stdlib.h>
#include<string.h>

struct node {
char *name;
struct node *next;
}*head;



void add( char *str ) {
struct node *temp;
temp=(struct node *)malloc(sizeof(struct node));
temp->name=str;

if (head== NULL) {
head=temp;
head->next=NULL;

} else {
temp->next=head;
head=temp;
}
}

void display(struct node *r) {
r=head;
if(r==NULL)
return;

while(r!=NULL) {
printf("%s ",r->name);
r=r->next;
}

printf("\n");
}

int main()
{
char *str;
struct node *n;
head=NULL;
while(scanf("%s",str) == 1) {
add(str);
display(n);
}

return 0;
}

最佳答案

改变

int  main()
{
char *str;

int  main()
{
char str[100]; // Or some other value to give scanf somewhere to put the data

然后在添加(假设这个功能在你的设置中可用)

temp->name=strdup(str);

我把释放内存留给读者作为练习

关于c - 向链表添加元素(C),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29730171/

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