LeetCode 第18題 刪除鏈表的倒數第N個節點
阿新 • • 發佈:2019-01-20
soft head 鏈表 span ems lis class return tps
/*
19. 刪除鏈表的倒數第N個節點
給定一個鏈表,刪除鏈表的倒數第 n 個節點,並且返回鏈表的頭結點。
示例:
給定一個鏈表: 1->2->3->4->5, 和 n = 2.
當刪除了倒數第二個節點後,鏈表變為 1->2->3->5.
說明:
給定的 n 保證是有效的。
*/
/*
Definition for singly-linked list.
public class ListNode{
int val; ListNode next;
ListNode(int x) { val = x; }
}
*/
/*
思路:雙指針法. 參考官方題解 : https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list/solution/
*/
1 class ListNode17 {
2
3 int val;
4 ListNode17 next;
5
6 ListNode17(int x) {
7 val = x;
8 }
9 }
10
11
12 class Solution19 {
13
14 public ListNode removeNthFromEnd(ListNode head, int n) {
15 if (head == null || n < 1) {
16 return null;
17 }
18 ListNode dummy = new ListNode(0);
19 ListNode high = dummy;
20 ListNode low = dummy;
21 dummy.next = head;
22 for (int i = 0; i < n && high != null; i++) {
23 high = high.next;
24 }
25 if (high == null) {
26 return null;
27 }
28 while (high.next != null) {
29 low = low.next;
30 high = high.next;
31 }
32 low.next = low.next.next;
33 return dummy.next;
34 }
35 }
LeetCode 第18題 刪除鏈表的倒數第N個節點