欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

237. Delete Node in a Linked List

程序员文章站 2024-02-17 10:36:40
...

题目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.

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