难度:简单

知识点:链表

地址:https://leetcode-cn.com/problems/delete-node-in-a-linked-list

请编写一个函数,使其可以删除某个链表中给定的(非末尾)节点,你将只被给定要求被删除的节点。

现有一个链表 -- head = [4,5,1,9]

示例 1:

输入: head = [4,5,1,9], node = 5
输出: [4,1,9]
解释: 给定你链表中值为 5 的第二个节点,那么在调用了你的函数之后,该链表应变为 4 -> 1 -> 9.

示例 2:

输入: head = [4,5,1,9], node = 1
输出: [4,5,9]
解释: 给定你链表中值为 1 的第三个节点,那么在调用了你的函数之后,该链表应变为 4 -> 5 -> 9.


说明:

链表至少包含两个节点。
链表中所有节点的值都是唯一的。
给定的节点为非末尾节点并且一定是链表中的一个有效节点。
不要从你的函数中返回任何结果。

思路

In [1]:
from utils import ListNode
from utils import listnode2array
from utils import array2listnode

class Solution:
    def deleteNode(self, node):
        """
        执行用时: 40 ms , 在所有 Python3 提交中击败了 98.57% 的用户
        内存消耗: 14.1 MB , 在所有 Python3 提交中击败了 7.14% 的用户

        :type node: ListNode
        :rtype: void Do not return anything, modify node in-place instead.
        """
        node.val = node.next.val
        node.next = node.next.next
            
        
        
        
# s = Solution()
# l1 = array2listnode([4,5,1,9])
# s.deleteNode(l1)
# assert listnode2array(l1) == [4,1,9]
# l1 = array2listnode([4,5,1,9])
# s.deleteNode(l1)
# assert listnode2array(l1) == [4,5,9]
---------------------------------------------------------------------------
AssertionError                            Traceback (most recent call last)
<ipython-input-1-7415534060a7> in <module>
     16 l1 = array2listnode([4,5,1,9])
     17 s.deleteNode(l1)
---> 18 assert listnode2array(l1) == [4,1,9]
     19 l1 = array2listnode([4,5,1,9])
     20 s.deleteNode(l1)

AssertionError: