LeetCode-237 Delete Node in a Linked List Solution (with Java)
1. Description:
Notes:

2. Examples:

3.Solutions:
/** * Created by sheepcore on 2019-05-10 * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solution { public void deleteNode(ListNode node) { node.val = node.next.val; node.next = node.next.next; } }


浙公网安备 33010602011771号