题解 | #删除链表的倒数第n个节点#
删除链表的倒数第n个节点
https://www.nowcoder.com/practice/f95dcdafbde44b22a6d741baf71653f6
import java.util.*;
/*
* public class ListNode {
* int val;
* ListNode next = null;
* }
*/
public class Solution {
/**
*
* @param head ListNode类
* @param n int整型
* @return ListNode类
*/
public ListNode removeNthFromEnd (ListNode head, int n) {
// write code here
ListNode preHead = new ListNode(0);
preHead.next = head;
ListNode p = head;
int cnt = 0;
while(p != null) {
p = p.next;
cnt++;
}
p = preHead;
for(int i = 0;i < cnt - n;i++) {
p = p.next;
}
p.next = p.next.next;
return preHead.next;
}
}
查看25道真题和解析