题解 | #从单向链表中删除指定值的节点#

从单向链表中删除指定值的节点

https://www.nowcoder.com/practice/f96cd47e812842269058d483a11ced4f

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

typedef struct NODE{
    int val;
    struct NODE *next;

}node;

int main(){

    int n;
    scanf("%d", &n);

    node *head = (node*)malloc(sizeof(node));
    scanf("%d", &head->val);
    head->next = NULL;

    int val1, val2;
    node *tmp = (node*)malloc(sizeof(node));
    for(int i = 0; i < n - 1; i++){
        scanf("%d %d", &val2, &val1);
        tmp = head;
        while(tmp){
            if(tmp->val == val1){
                node *nod = (node*)malloc(sizeof(node));
                nod->val = val2;
                nod->next = tmp->next;
                tmp->next = nod;
                break;
            }
            tmp = tmp->next;
        }

    }

    int val_d;
    scanf("%d", &val_d);
    tmp = head;
    if(tmp->val == val_d){
        head = tmp->next;
        free(tmp);
    }else{
        while(tmp->next){
            if(tmp->next->val == val_d){
                node *to_delete = tmp->next;
                tmp->next = to_delete->next;
                free(to_delete);
                break;
            }
            tmp = tmp->next;
        }
    }

    tmp = head;
    while(tmp){
        printf("%d ", tmp->val);
        tmp = tmp->next;
    }

    return 0;
}

全部评论
修改版
点赞 回复 分享
发布于 2023-03-13 10:26 美国

相关推荐

联通 技术人员 总包不低于12
点赞 评论 收藏
分享
shtdbb_:还不错,没有让你做了笔试再挂你
点赞 评论 收藏
分享
勇敢的联想人前程似锦:如果我是你,身体素质好我会去参军,然后走士兵计划考研211只需要200多分。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务