Skip to content

Commit b743314

Browse files
committed
feat: 19.Renove Nth Node from end of list
1 parent dcd0daf commit b743314

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Leetcode/0019.Remove-Nth-Node-From-End-of-List/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ tags: Medium, Two Pointers
44
author: Kimi Tsai <[email protected]>
55
description:
66
---
7-
# [19. Remove Nth Node From End of List](https://leetcode.com/problems/middle-of-the-linked-list/)
7+
# [19. Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/)
88

99
## 題目
1010
Given the head of a linked list, remove the nth node from the end of the list and return its head.
@@ -65,6 +65,10 @@ type ListNode struct {
6565
Next *ListNode
6666
}
6767

68+
// 產生 dummyHead,跟 preslow
69+
// 使用雙指針, 先讓 fast走 `k` 步, 然後 `fast slow 同速前進`
70+
// 這樣當fast走到nil時, slow所在位置就是在倒數第 k 的節點
71+
// 將 slow的前一步(preslow)的next 指向 slow.Next
6872
func RemoveNthFromEnd(head *ListNode, n int) *ListNode {
6973
dummyHead := &ListNode{Next: head}
7074
preSlow, slow, fast := dummyHead, head, head

Leetcode/0019.Remove-Nth-Node-From-End-of-List/main.go

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ type ListNode struct {
1313
Next *ListNode
1414
}
1515

16+
// 產生 dummyHead,跟 preslow
17+
// 使用雙指針, 先讓 fast走 `k` 步, 然後 `fast slow 同速前進`
18+
// 這樣當fast走到nil時, slow所在位置就是在倒數第 k 的節點
19+
// 將 slow的前一步(preslow)的next 指向 slow.Next
1620
func RemoveNthFromEnd(head *ListNode, n int) *ListNode {
1721
dummyHead := &ListNode{Next: head}
1822
preSlow, slow, fast := dummyHead, head, head

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ https://kimi0230.github.io/LeetcodeGolang/
8686

8787
| No. | Title | Solution | Difficulty | Time | Space | Topic |
8888
|---------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------------------:|------------|-------------|-------|---------------------------|
89-
| [0019](https://kimi0230.github.io/LeetcodeGolang/Leetcode/0019.Remove-Nth-Node-From-End-of-List/) | [Remove Nth Node From End of List](https://leetcode.com/problems/middle-of-the-linked-list/) | [Go](https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0019.Remove-Nth-Node-From-End-of-List) | Medium | O(n) | O(1) | Linked List, Two Pointers |
89+
| [0019](https://kimi0230.github.io/LeetcodeGolang/Leetcode/0019.Remove-Nth-Node-From-End-of-List/) | [Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/) | [Go](https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0019.Remove-Nth-Node-From-End-of-List) | Medium | O(n) | O(1) | Linked List, Two Pointers |
9090
| [0141](https://kimi0230.github.io/LeetcodeGolang/Leetcode/0141.Linked-List-Cycle/) | [Linked List Cycle](https://leetcode.com/problems/linked-list-cycle) | [Go](https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0141.Linked-List-Cycle) | Easy | O(n) | O(1) | Linked List, Two Pointers |
9191
| [0142](https://kimi0230.github.io/LeetcodeGolang/Leetcode/0142.Linked-List-CycleII/) | [Linked List Cycle II](https://leetcode.com/problems/linked-list-cycle-ii/) | [Go](https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0142.Linked-List-CycleII) | Medium | O(n) | O(1) | Linked List, Two Pointers |
9292
| [0203](https://kimi0230.github.io/LeetcodeGolang/Leetcode/0203.Remove-Linked-List-Elements) | [Remove Linked List Elements](https://leetcode.com/problems/remove-linked-list-elements/) | [Go](https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0203.Remove-Linked-List-Elements) | Easy | O(n) | O(1) | Linked List |

0 commit comments

Comments
 (0)