题解 | #牛牛的链表删除#

牛牛的链表删除

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

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

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

void freeNode(struct Node* cur) {
    if (cur->next != NULL)
        freeNode(cur->next);
    free(cur);
}

int main() {
    int count, key, value;

    Node* head = (Node*)malloc(sizeof(Node));
    Node* current = head;

    int i = 0;

    scanf("%d %d", &count, &key);

    for (i = 0; i < count; i++) {
        scanf("%d", &value);
        current->data = value;
        current->next = (Node*)malloc(sizeof(Node));
        current = current->next;
    }

    current = head;

    Node* tmp = (Node*)malloc(sizeof(Node));
    Node* tmphead = tmp;

    for (i = 0; i < count; i++) {
        if (current->data != key) {
            tmp->data = current->data;
            tmp->next = (Node*)malloc(sizeof(Node));
            tmp = tmp->next;
            current = current->next;
        } else
            current = current->next;
    }

    tmp = tmphead;
    current = head;

    while (tmp->next != NULL) {
        printf("%d ", tmp->data);
        tmp = tmp->next;
    }

    freeNode(current);

    return 0;
}

全部评论

相关推荐

昨天 09:08
裁应届生,一分钱补偿没有,离职了还脑控你,跟踪你,定位你,丁东服务是搞系每一个人
牛客吹哨人:建议细说...哨哥晚点统一更新到黑名单:不要重蹈覆辙!25届毁意向毁约裁员黑名单https://www.nowcoder.com/discuss/1317104
叮咚买菜稳定性 10人发布 投递叮咚买菜等公司10个岗位 >
点赞 评论 收藏
分享
把球:这个听过,你加了就会发现是字节的hr
点赞 评论 收藏
分享
11-09 11:01
济南大学 Java
Java抽象带篮子:外卖项目真得美化一下,可以看看我的详细的外卖话术帖子
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务