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

Leetcode92_反转链表II

时间:2020-02-11 19:30:21      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:部分   href   link   ref   记录   依次   题目   null   lin   

题目地址

链表部分反转

  • 憨比解法,找到反转段的pre,反转中间段的同时记录尾节点,再接上后面一段
  • 优秀解法,中间段的反转用头插法的思路
  • 注意用个dummy头结点会比较方便处理边界

code1

class Solution {
    public ListNode reverseBetween(ListNode head, int m, int n) {
        ListNode dummy=new ListNode(0);
        dummy.next=head;
        ListNode pre=dummy;
        int id=1;
        while(id<m){
            pre=head;
            head=head.next;
            id++;
        }
        ListNode newHead=null;
        ListNode newTail=null;
        for(int i=m;i<=n;i++){
            ListNode tmp=head;
            head=head.next;
            tmp.next=newHead;
            newHead=tmp;
            if(newTail==null){
                newTail=tmp;
            }
        }
        pre.next=newHead;
        newTail.next=head;
        return dummy.next;
    }
}

code2

class Solution {
    public ListNode reverseBetween(ListNode head, int m, int n) {
        ListNode dummy=new ListNode(0);
        dummy.next=head;
        ListNode pre=dummy;
        for(int i=1;i<m;i++){
            pre=pre.next;
        }
        head=pre.next;
        for(int i=m;i<n;i++){
            //头插法,插入后tmp是中间段的头结点
            //翻转pre,a[m...n]只需要将a[m+1...n]依次插入到pre后面
            ListNode tmp=head.next;
            //head指向当前节点的上一个节点,即每次要头插的就是head.next
            head.next=head.next.next;
            //头插法
            tmp.next=pre.next;
            pre.next=tmp;
        }
        return dummy.next;
    }
}

Leetcode92_反转链表II

标签:部分   href   link   ref   记录   依次   题目   null   lin   

原文地址:https://www.cnblogs.com/zxcoder/p/12295254.html

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