LEEDCODE 203移除链表元素

cpp 复制代码
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode() : val(0), next(nullptr) {}
 *     ListNode(int x) : val(x), next(nullptr) {}
 *     ListNode(int x, ListNode *next) : val(x), next(next) {}
 * };
 */

class Solution {
public:
    ListNode* removeElements(ListNode* head, int val) {
        if(head == nullptr)
        {
            return nullptr;
        }
        ListNode* _dummyhead = new ListNode(0);
        _dummyhead->next = head;

        ListNode* pre = _dummyhead;
        ListNode* cur = _dummyhead->next;
        while(cur)
        {
            if(cur->val == val)
            {
                ListNode* p = cur;
                pre->next = cur->next;
                cur = cur->next;
                delete p;

            }
            else
            {
                cur = cur->next;
                pre = pre->next;

            }
        }
        return _dummyhead->next;

        
    }
};
相关推荐
无敌的牛1 小时前
vector模拟实现(2)
数据结构
Wx120不知道取啥名2 小时前
C语言跳表(Skip List)算法:数据世界的“时光穿梭机”
c语言·数据结构·算法·list·跳表算法
ゞ 正在缓冲99%…3 小时前
leetcode295.数据流的中位数
java·数据结构·算法·leetcode·
愚戏师7 小时前
软件工程(应试版)图形工具总结(二)
数据结构·c++·python·软件工程
owde7 小时前
顺序容器 -forward list单链表
数据结构·c++·list
振鹏Dong9 小时前
字符串——面试考察高频算法题
java·数据结构·算法
泛舟起晶浪10 小时前
大衣的旅行--前缀和+二分
数据结构·算法
Run_Teenage10 小时前
C语言 数据结构【双向链表】动态模拟实现
c语言·数据结构·链表
歪~~11 小时前
KMP算法
数据结构·c++·算法
DexterYttt12 小时前
AT_abc212_d [ABC212D] Querying Multiset
数据结构·c++·算法·优先队列