码迷,mamicode.com
首页 > 其他好文 > 详细

删除单链表指定结点出现段错误?

时间:2019-09-15 16:47:17      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:单链表   lse   struct   head   data   出现   turn   ext   span   

起初我是这么写的:

struct node * deletenode(struct node *head,int b){
    struct node *pre,*cur;
    pre=NULL;
    cur=head;
    if(head&&head->data==b){
        head=head->next;
        free(cur);
    }    
    else{
        while(cur->data!=b){
            pre=cur;
            cur=cur->next;
        }
        pre->next=cur->next;
        free(cur);    
    }
    return head;
}

结果提交时说段错误,改成下面这样就通过了,暂时还不知道为啥。。。

struct node * deletenode(struct node *head,int b){
    struct node *pre,*cur;
    pre=NULL;
    cur=head;
    if(head&&head->data==b){
        head=head->next;
        free(cur);
    }    
    else{
        while(cur){
        if(cur->data==b){
            pre->next=cur->next;
            free(cur);
        } 
        pre=cur;
        cur=cur->next;
    }
    return head;
    }
}

 

 

删除单链表指定结点出现段错误?

标签:单链表   lse   struct   head   data   出现   turn   ext   span   

原文地址:https://www.cnblogs.com/littleLittleTiger/p/11523281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!