Skip to content

Commit 0973f45

Browse files
authored
Create 19. Remove Nth Node From End of List
1 parent d6bd91b commit 0973f45

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

19. Remove Nth Node From End of List

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/**
2+
* Definition for singly-linked list.
3+
* public class ListNode {
4+
* int val;
5+
* ListNode next;
6+
* ListNode(int x) { val = x; }
7+
* }
8+
*/
9+
public class Solution {
10+
public ListNode removeNthFromEnd(ListNode head, int n) {
11+
if(n<=0){
12+
return null;
13+
}
14+
ListNode dummy = new ListNode(0);
15+
dummy.next = head;
16+
17+
ListNode predelete = dummy;
18+
for(int i =0; i<n;i++){
19+
if(head == null){
20+
return null;
21+
}
22+
head = head.next;
23+
}
24+
25+
while(head != null){
26+
head = head.next;
27+
predelete = predelete.next;
28+
}
29+
30+
predelete.next = predelete.next.next;
31+
return dummy.next;
32+
33+
}
34+
}

0 commit comments

Comments
 (0)