gpt4 book ai didi

c - 如何将整行插入到c中的节点中?

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

如何使用 getline() 获取整行并将其插入到链表中?这是我的代码。我确定我是否可以将一行视为整个字符串。当我只尝试一行时,程序运行没有问题。但是当我尝试插入另一行时,它显示段错误:11。

typedef struct Node{
struct Node *next;
char *data;
}Node;

void insert(Node **head, char *input){
Node *newNode = malloc(sizeof(Node));
newNode->data = input;
newNode->next = NULL;

Node *cur = *head;
if(*head == NULL){
*head = newNode;
}
else{
while(cur!=NULL){
cur = cur->next;
}
cur->next = newNode;
}
}

void Pint(Node *head){
Node *cur = head;
while(cur!=NULL){
printf("%s\n", cur->data);
cur = cur->next;
}
printf("\n");
}


int main(){
Node *head = NULL;
char *input = NULL;
size_t len = 0;
while(getline(&input, &len, stdin)!=EOF){
insert(&head, input);
input = NULL;
}
Pint(head);
return 0;
}

最佳答案

我相信段错误是当你这样做时:

    while(cur!=NULL){
cur = cur->next;
}
cur->next = newNode;

由于 cur 在 while 循环之后为 NULL,因此它没有 next。

在 while 循环中,我会检查 cur->next 何时不为 null,这样当您将 newNode 分配给 cur->next 时,cur 就不会为 NULL。

这可以解释为什么第一个有效,因为它只是设置了 *head = newNode,但是当您添加下一个时会发生段错误。

关于c - 如何将整行插入到c中的节点中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40144770/

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