1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/java/delete-node-in-a-linked-list.java

22 lines
450 B
Java
Raw Normal View History

/**
* Definition for singly-linked list. public class ListNode { int val; ListNode next; ListNode(int
* x) { val = x; } }
*/
class Solution {
private boolean isLastNode(ListNode node) {
return node != null && node.next == null;
}
public void deleteNode(ListNode node) {
while (node != null) {
node.val = node.next.val;
if (isLastNode(node.next)) {
node.next = null;
}
node = node.next;
}
}
}