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

[LeetCode]92. Reverse Linked List II反转部分链表

时间:2018-02-06 20:29:50      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:gpo   第一个   pos   思路   nbsp   nod   turn   span   tno   

/*
    重点还是反转链表
    思路就是中间的反转,然后两头接上
     */
    public ListNode reverseBetween(ListNode head, int m, int n) {
        if (head==null||m>=n) return head;
        int count = 1;
        ListNode sta = head;
        //mid就是第一个接点的前节点
        ListNode mid = null;
        while (count<m)
        {
            mid = head;
            head = head.next;
            count++;
        }
        //中间的部分反转,此时的head是反转的开头
        ListNode pre = null;
        while (count<=n)
        {
            ListNode next = head.next;
            head.next = pre;
            pre = head;
            head = next;
            count++;
        }
        //将后边的接上
        ListNode end = pre;
        while (end.next!=null) end = end.next;
        end.next = head;
        //如果是从第一个开始,要单独考虑
        if (mid!=null) mid.next = pre;
        else return pre;
        return sta;
    }

 

[LeetCode]92. Reverse Linked List II反转部分链表

标签:gpo   第一个   pos   思路   nbsp   nod   turn   span   tno   

原文地址:https://www.cnblogs.com/stAr-1/p/8423551.html

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