赞
踩
给你单链表的头指针 head 和两个整数 left 和 right ,其中 left <= right 。请你反转从位置 left 到位置 right 的链表节点,返回 反转后的链表 。
示例 1:
输入:head = [1,2,3,4,5], left = 2, right = 4
输出:[1,4,3,2,5]
示例 2:
输入:head = [5], left = 1, right = 1
输出:[5]
提示:
链表中节点数目为 n
1 <= n <= 500
-500 <= Node.val <= 500
1 <= left <= right <= n
进阶: 你可以使用一趟扫描完成反转吗?
解题思路:
可以把需要反转的部分存入数组,然后倒序赋给链表
代码:
- /**
- * Definition for singly-linked list.
- * struct ListNode {
- * int val;
- * ListNode *next;
- * ListNode() : val(0), next(nullptr) {}
- * ListNode(int x) : val(x), next(nullptr) {}
- * ListNode(int x, ListNode *next) : val(x), next(next) {}
- * };
- */
- class Solution {
- public:
- ListNode* reverseBetween(ListNode* head, int left, int right) {
- ListNode *node = new ListNode();
- node->next = head;
- if(!head || !head->next) return head;
-
- ListNode *pre = node;
- for(int i=1;i<left;i++){
- pre = pre->next;
- }
- head = pre->next;
- for(int i=left;i<right;i++){
- ListNode *q = head->next;
- head->next = q->next;
- q->next = pre->next;
- pre->next = q;
- }
- return node->next;
- }
- };
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。