首页 > 其他 > 详细

203. 移除链表元素

时间:2021-02-18 23:29:21      阅读:37      评论:0      收藏:0      [点我收藏+]

题目描述

?删除链表中等于给定值 val 的所有节点。

原题请参考链接https://leetcode-cn.com/problems/remove-linked-list-elements/

题解

方法一?【暴力法】

class Solution:
    def removeElements(self, head: ListNode, val: int) -> ListNode:
        while head and head.val == val:
            head = head.next
        cur = head
        while cur and cur.next:
            if cur.next.val == val:
                cur.next = cur.next.next
            else:
                cur = cur.next
        return head

方法二?【虚拟节点】

class Solution:
    def removeElements(self, head: ListNode, val: int) -> ListNode:
        dummy_node = ListNode(0)
        tmp.next = head
        cur = dummy_node
        while head:
            if head.val == val:
                cur.next = head.next
                head = head.next
            else:
                cur = cur.next
                head = head.next
        return dummy_node.next

203. 移除链表元素

原文:https://www.cnblogs.com/bladers/p/14413657.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!