Leetcode 237 删除链表中的节点

Leetcode 237 删除链表中的节点

示例 1:
输入: head = [4,5,1,9], node = 5
输出: [4,1,9]
解释: 给定你链表中值为 5 的第二个节点,那么在调用了你的函数之后,该链表应变为 4 -> 1 -> 9.
详解:我们可以使用直接赋值的方式来删除节点,因为题目中隐含了条件,这个节点不会是链表的最后一个节点。

class Solution {
    public void deleteNode(ListNode node) {
        node.val = node.next.val;
        node.next = node.next.next;   
    }
}

你可能感兴趣的:(Leetcode)