码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 92. 反转链表 II

时间:2020-11-11 16:43:05      阅读:18      评论:0      收藏:0      [点我收藏+]

标签:旋转   http   代码实现   lan   linked   https   class   node   leetcode   

题目连接

92. 反转链表 II

题目分析

题目要求我们用一趟扫描完成旋转,我们只需要先把[m,n]这段区间内的链表定位了就容易做了。当我们完成定位后就是普通的三指针反转链表

代码实现

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode reverseBetween(ListNode head, int m, int n) {
        ListNode fast = head;
        int count = 1;
        ListNode dummy = new ListNode(-1);
        dummy.next = head;
        ListNode slow = dummy;
        while(fast != null){
            if(count < m){
                slow = slow.next;
            }
            fast = fast.next;
            count++;
            if(count == n){
                ListNode tail = fast.next;
                fast.next = null;
                ListNode node = slow.next;
                slow.next = null;
                fast = node;
                ListNode cur = node;
                ListNode post = null;
                while(fast != null){
                    fast = fast.next;
                    cur.next = post;
                    post = cur;
                    cur = fast;
                }
                slow.next = post;
                node.next = tail;
                return dummy.next;
            }
        }
        return head;
    }
}

LeetCode 92. 反转链表 II

标签:旋转   http   代码实现   lan   linked   https   class   node   leetcode   

原文地址:https://www.cnblogs.com/ZJPaang/p/13767928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!