力扣:237. 删除链表中的节点
This commit is contained in:
parent
339aafab1b
commit
7055d02388
@ -0,0 +1,13 @@
|
|||||||
|
package com.code.leet.study.t20210207;
|
||||||
|
|
||||||
|
import com.code.leet.entiy.ListNode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 请编写一个函数,使其可以删除某个链表中给定的(非末尾)节点。传入函数的唯一参数为 要被删除的节点 。
|
||||||
|
*/
|
||||||
|
public class DeleteNode {
|
||||||
|
public void deleteNode(ListNode node) {
|
||||||
|
node.val = node.next.val;
|
||||||
|
node.next = node.next.next;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user