leetcode解题之237# Delete Node in a Linked List Java版 (删除链表中指定的结点)

来源:互联网 发布:盘古网络唐山icp备 编辑:程序博客网 时间:2024/04/29 06:32

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 value3, the linked list should become 1 -> 2 -> 4 after calling your function.

删除给定的结点,但是没有给定头结点,又指定此结点不是尾结点,所以可以用后面的结点覆盖前面的结点解决。

/** * Definition for singly-linked list. * public class ListNode { *     int val; *     ListNode next; *     ListNode(int x) { val = x; } * } */public class Solution {public void deleteNode(ListNode node) {node.val = node.next.val;node.next = node.next.next;}}




0 0