2019-03-02 algorithm leetcode -deleteNodeInALinkedList Leetcode题解之 —— 删除链表中的节点 思路 题目给出的node即为要删除的节点 题解 12345678/** * @param {ListNode} node * @return {void} Do not return anything, modify node in-place instead. */var deleteNode = function (node) { node.val = node.next.val; node.next = node.next.next;}; 作者 : zhaoyang Duan 地址 : https://ddzy.github.io/blog/2019/03/02/leetcode-deleteNodeInALinkedList/ 来源 : https://ddzy.github.io/blog 著作权归作者所有,转载请联系作者获得授权。