移除链表元素

法一:在原链表上删除

cpp 复制代码
struct SListNode* removeElements(struct SListNode* head, int val)
{
    if (head == NULL)
        return NULL;
    while (head->data == val)
    {
        struct SListNode* del = head;
        head = del->next;
        free(del);
        del = NULL;
        if (head == NULL)
            break;
    }
    if (head == NULL)
        return NULL;
    struct SListNode* cur = head;
    
    while (cur->next != NULL)
    {
        if (cur->next->data == val)
        {
            struct SListNode* del = cur->next;
            cur->next = del->next;
            free(del);
            del = NULL;
        }
        else
        {
            cur = cur->next;
        }
    }
    return head;
}

法二:创建新的链表

cpp 复制代码
struct SListNode* removeElements(struct SListNode* head, int val)
{
    struct SListNode* pcur = NULL, * pend = NULL;
    struct SListNode* cur = head;
    if (cur == NULL)
        return NULL;
    else
    {
        while (cur != NULL)
        {
            if (cur->data != val)
            {
                if (pcur == NULL)
                    pcur = pend = cur;
                else
                {
                    pend->next = cur;
                    pend = cur;
                }
            }
            cur = cur->next;
        }
        if (pend != NULL)
            pend->next = NULL;
        head = pcur;
        return head;
    }
}
相关推荐
zh_xuan2 分钟前
LeeCode 57. 插入区间
c语言·开发语言·数据结构·算法
巷北夜未央17 分钟前
数据结构之二叉树Python版
开发语言·数据结构·python
手握风云-1 小时前
优选算法的妙思之流:分治——快排专题
数据结构·算法
G皮T2 小时前
【Python Cookbook】字符串和文本(五):递归下降分析器
数据结构·python·正则表达式·字符串·编译原理·词法分析·语法解析
柯ran2 小时前
数据结构|排序算法(一)快速排序
数据结构·算法·排序算法
pipip.3 小时前
搜索二维矩阵
数据结构·算法·矩阵
念_ovo4 小时前
【算法/c++】利用中序遍历和后序遍历建二叉树
数据结构·c++·算法
luckyme_4 小时前
leetcode-代码随想录-链表-移除链表元素
算法·leetcode·链表
_安晓4 小时前
数据结构 -- 图的存储
数据结构·算法
.YY001.5 小时前
数据结构第一轮复习--第六章图包含代码
数据结构·算法