【每日算法】AB9 链表

简介: 【每日算法】AB9 链表

题目

描述

请你实现一个链表。
操作:
insert x y:将yy加入链表,插入在第一个值为xx的结点之前。若链表中不存在值为xx的结点,则插入在链表末尾。保证xx,yy为int型整数。
delete x:删除链表中第一个值为xx的结点。若不存在值为xx的结点,则不删除。

输入描述:

第一行输入一个整数n (1≤n≤10^4),表示操作次数。
接下来的n行,每行一个字符串,表示一个操作。保证操作是题目描述中的一种。

输出描述:

输出一行,将链表中所有结点的值按顺序输出。若链表为空,输出"NULL"(不含引号)。

代码

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

struct node {
    int data;
    struct node* next;
} node;

struct node* init() {
    struct node* n = (struct node*)malloc(sizeof(struct node));
    n->next = NULL;
    n->data = -1;
    return n;
}

void insert(struct node* l, int beforeme, int data) {
    struct node* n = (struct node*)malloc(sizeof(struct node));
    n->data = data;
    struct node* tmp = l;
    while (1) {
        if (tmp->next == NULL) {
            tmp->next = n;
            n->next = NULL;
            break;
        } else {
            if (tmp->next->data == beforeme) {
                n->next = tmp->next;
                tmp->next = n;
                break;
            }
            tmp = tmp->next;
        }
    }
}

void delete (struct node* l, int target) {
    struct node* tmp = l;
    while (1) {
        if (tmp->next == NULL) {
            if (tmp->data == target) {
                free(tmp);
            } else {
                break;
            }
        } else if (tmp->next->data == target) {
            struct node* tmpp = tmp->next;
            tmp->next = tmp->next->next;
            free(tmpp);
            break;
        } else {
            tmp = tmp->next;
        }
    }
}

int main() {
    int n;
    scanf("%d", &n);
    struct node* l = init();
    for (int i = 0; i < n; i ++) {
        char op[7];
        scanf("%s", op);
        if (strcmp(op, "insert") == 0) {
            int afterme, data;
            scanf("%d %d", &afterme, &data);
            insert(l, afterme, data);
        } else if (strcmp(op, "delete") == 0) {
            int target;
            scanf("%d", &target);
            delete (l, target);
        }
    }
    struct node* tmp = l->next;
    if (tmp == NULL) {
        printf("NULL\n");
    } else {
        while (tmp != NULL) {
            printf("%d ", tmp->data);
            tmp = tmp->next;
        }
    }
    return 0;
}

问题

关于调用free函数释放内存的问题,之前是delete函数里是这样释放的

        else if (tmp->next->data == target) {
            tmp->next = tmp->next->next;
            free(tmp->next);
            break;
        }

然而此时tmp的next已经更新了,所以需要创建一个指针指向tmp的next,最后释放该指针指向的空间:

        else if (tmp->next->data == target) {
            struct node* tmpp = tmp->next;
            tmp->next = tmp->next->next;
            free(tmpp);
            break;
        }
目录
相关文章
|
3月前
|
算法
【❤️算法笔记❤️】-每日一刷-19、删除链表的倒数第 N个结点
【❤️算法笔记❤️】-每日一刷-19、删除链表的倒数第 N个结点
84 1
|
3月前
|
算法 索引
❤️算法笔记❤️-(每日一刷-141、环形链表)
❤️算法笔记❤️-(每日一刷-141、环形链表)
62 0
|
3月前
|
算法
【❤️算法笔记❤️】-(每日一刷-876、单链表的中点)
【❤️算法笔记❤️】-(每日一刷-876、单链表的中点)
61 0
|
3月前
|
算法
【❤️算法笔记❤️】-每日一刷-23、合并 K 个升序链表
【❤️算法笔记❤️】-每日一刷-23、合并 K 个升序链表
41 0
|
3月前
|
存储 算法
【❤️算法笔记❤️】-每日一刷-21、合并两个有序链表
【❤️算法笔记❤️】-每日一刷-21、合并两个有序链表
130 0
|
2月前
|
算法 安全 搜索推荐
2024重生之回溯数据结构与算法系列学习之单双链表精题详解(9)【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构王道第2.3章之IKUN和I原达人之数据结构与算法系列学习x单双链表精题详解、数据结构、C++、排序算法、java、动态规划你个小黑子;这都学不会;能不能不要给我家鸽鸽丢脸啊~除了会黑我家鸽鸽还会干嘛?!!!
|
2月前
|
存储 Web App开发 算法
2024重生之回溯数据结构与算法系列学习之单双链表【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构之单双链表按位、值查找;[前后]插入;删除指定节点;求表长、静态链表等代码及具体思路详解步骤;举例说明、注意点及常见报错问题所对应的解决方法
|
3月前
|
存储 缓存 算法
经典算法之链表篇(三)
经典算法之链表篇(三)
|
3月前
|
算法
经典算法之链表篇(二)
经典算法之链表篇(二)
|
3月前
|
算法 索引
经典算法之链表篇
经典算法之链表篇

热门文章

最新文章