Leetcode#92. Reverse Linked List II
Problem
Given the head
of a singly linked list and two integers left
and right
where left <= right
, reverse the nodes of the list from position left
to position right
, and return the reversed list.
Example 1:
!https://assets.leetcode.com/uploads/2021/02/19/rev2ex2.jpg
1 | Input: head = [1,2,3,4,5], left = 2, right = 4 |
Example 2:
1 | Input: head = [5], left = 1, right = 1 |
Constraints:
- The number of nodes in the list is
n
. 1 <= n <= 500
500 <= Node.val <= 500
1 <= left <= right <= n
Solve
法1
題目一開始沒有看清楚
原來是 position ‘left’ 、 position ‘right’,還以為是跑到與left、right 相同的數字進行反轉,導致一直錯
這類題目就是用一個指標指向開頭,將後面節點進行一陣操作後
返回指向 開頭的節點 的指標
1 | # Definition for singly-linked list. |
本部落格所有文章除特別聲明外,均採用 CC BY-NC-SA 4.0 許可協議。轉載請註明來自 Imisky!
評論