LeetCode: Remove Nth Node From End of List 解題報告

Remove Nth Node From End of List

  Total Accepted: 46720 Total Submissions: 168596My Submissions

 

Given a linked list, remove the nth node from the end of list and return its head.java

For example,node

   Given linked list: 1->2->3->4->5, and n = 2.

   After removing the second node from the end, the linked list becomes 1->2->3->5.

Note:
Given n will always be valid.
Try to do this in one pass.git

 

Show Tags
 

SOLUTION 1:

1.使用快慢指針,快指針先行移動N步。用慢指針指向要移除的Node的前一個Node.github

2. 使用dummy node做爲head的前綴節點,這樣就算是刪除head也能輕鬆handle啦!ide

主頁君是否是很聰明呀? :)this

 1 /**
 2  * Definition for singly-linked list.
 3  * public class ListNode {
 4  *     int val;
 5  *     ListNode next;
 6  *     ListNode(int x) {
 7  *         val = x;
 8  *         next = null;
 9  *     }
10  * }
11  */
12 public class Solution {
13     public ListNode removeNthFromEnd(ListNode head, int n) {
14         // 0017
15         ListNode dummy = new ListNode(0);
16         dummy.next = head;
17         
18         ListNode slow = dummy;
19         ListNode fast = dummy;
20         
21         // move fast N more than slow.
22         while (n > 0) {
23             fast = fast.next;
24             // Bug 1: FORGET THE N--;
25             n--;
26         }
27         
28         while (fast.next != null) {
29             fast = fast.next;
30             slow = slow.next;
31         }
32         
33         // Slow is the pre node of the node which we want to delete.
34         slow.next = slow.next.next;
35         
36         return dummy.next;
37     }
38 }
View Code

 

GITHUB (國內用戶可能沒法鏈接):spa

https://github.com/yuzhangcmu/LeetCode/blob/251766ffb832f2278f43a05e194ca76584bf14ea/list/RemoveNthFromEnd.java指針

相關文章
相關標籤/搜索