You are given the
Return the head of the linked list after swapping the values of the
Example 1:
Input: head = [1,2,3,4,5], k = 2 Output: [1,4,3,2,5]
Example 2:
Input: head = [7,9,6,6,7,8,3,0,9,5], k = 5 Output: [7,9,6,6,8,7,3,0,9,5]
Example 3:
Input: head = [1], k = 1 Output: [1]
Example 4:
Input: head = [1,2], k = 1 Output: [2,1]
Example 5:
Input: head = [1,2,3], k = 2 Output: [1,2,3]
Constraints:
- The number of nodes in the list is
n . 1 <= k <= n <= 105 0 <= Node.val <= 100
Solution
也是用快慢指針來找
但這次因為要 swap,所以要分兩次找
找到相對應的 node 後,swap 其值即可
kotlin
沒有留言:
張貼留言