有人能帮我解决程序中的segmentation fault错误吗。
我最近开始使用链表,我不知道我是否正确使用了struct node。如果用错了,有人能纠正我吗。谢谢您!

#include<stdio.h>
#include<stdlib.h>
struct node
{
        int data;
        struct node* link;
};
struct node* root = NULL;
void append()
{
        struct node* temp;
        temp=(struct node*)malloc(sizeof(struct node));
        printf("Enter The Node Value: ");
        scanf("%d",&temp->data);
        temp->link=NULL;
        if(root = NULL)
        {
                root = temp;
        }
        else
        {
                struct node* p;
                p = root;
                while(p->link != NULL)
                {
                        p=p->link;
                }
                p = temp;
        }
}
int main()
{
        printf("Add A Node To The Structure:-\n");
        while(1)
        {
                int ch;
                printf("Enter 2 To Exit\n");
                printf("Enter Your Choice:");
                scanf("%d",&ch);
                switch(ch)
                {
                        case 2: exit(0);
                        default:append();
                }
        }
        return 0;
}

最佳答案

if(root = NULL)将空值分配给根,而不是检查。
Null被转换为boolean false,因此执行else块。
使用假定为非空的root属性会导致segfault。
改为写if(root == NULL)

关于c - 有人可以告诉我段错误的原因吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57016552/

10-12 17:16