Leetcode 237. Delete Node in a Linked List
Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.
Supposed the linked list is 1 -> 2 -> 3 -> 4
and you are given the third node with value 3
, the linked list should become 1 -> 2 -> 4
after calling your function.
思路:如果想在id的意义下,将给定的node删除是不可能的。因为如果只有 access to node,那么不可能知道前面一个node在哪里。所以使用将这个node重新赋值的方法。
class Solution: # @param {ListNode} node # @return {void} Do not return anything, modify node in-place instead. def deleteNode(self, node): node.val = node.next.val node.next = node.next.next