https://leetcode.com/problems/delete-node-in-a-linked-list/description/
class Solution {
public void deleteNode(ListNode node) {
node.val = node.next.val;
node.next = node.next.next;
}
}
https://leetcode.com/problems/delete-node-in-a-linked-list/description/
class Solution {
public void deleteNode(ListNode node) {
node.val = node.next.val;
node.next = node.next.next;
}
}
本文标题:237. Delete Node in a Linked Lis
本文链接:https://www.haomeiwen.com/subject/qhxcvftx.html
网友评论