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;   
    }
}

  

posted @ 2020-03-02 15:10  SheepCore  阅读(105)  评论(0)    收藏  举报