剑指 Offer 18. 删除链表的节点

①先遍历,找到之后直接删除就可。

class Solution:
    def deleteNode(self, head: ListNode, val: int) -> ListNode:
        if head.val == val:
            return head.next
        pre = head
        back = head.next
        while back:
            if back.val != val:
                pre = back
                back = back.next
            else:
                pre.next = back.next
                break
        return head
#执行用时:44 ms, 在所有 Python3 提交中击败了40.33%的用户
#内存消耗:15.6 MB, 在所有 Python3 提交中击败了23.17%的用户
              

②上面使用的指针数量太多,做一个优化。使用单指针就可以做到了:

class Solution:
    def deleteNode(self, head: ListNode, val: int) -> ListNode:
        if head.val == val:
            return head.next
        pre = head
        while pre.next and pre.next.val != val:
            pre = pre.next
        if pre.next:
            pre.next = pre.next.next
        return head
# 执行用时:36 ms, 在所有 Python3 提交中击败了79.75%的用户
# 内存消耗:15.3 MB, 在所有 Python3 提交中击败了73.03%的用户

-------------看完题解,不得不佩服这些大佬们。。。我的内心:这tm也能用递归= =、真实感觉到自己和别人的差距:

③使用递归法----如果不等于val,直接返回,等于val,返回下一个结点。

class Solution:
    def deleteNode(self, head: ListNode, val: int) -> ListNode:
        if not head:
            return null
        if head.val == val:
            return head.next
        else:
            head.next = self.deleteNode(head.next, val)
        return head

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值