leetcode-19. 删除链表的倒数第N个节点

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class Solution {
public ListNode removeNthFromEnd(ListNode head, int n) {
int count = 0;
ListNode cur = head;
while(cur.next != null){
cur = cur.next;
count ++;
}

cur = head;
ListNode pre = null;

int k = count - n + 1;
while(k > 0){
pre = cur;
cur = cur.next;
k--;
}

if(pre != null){
pre.next = cur.next;
}else{
return cur.next;
}

return head;
}
}