题解 | #链表内指定区间反转#

链表内指定区间反转

http://www.nowcoder.com/practice/b58434e200a648c589ca2063f1faf58c

import java.util.*;

/*
 * public class ListNode {
 *   int val;
 *   ListNode next = null;
 * }
 */

public class Solution {
    /**
     * 
     * @param head ListNode类 
     * @param m int整型 
     * @param n int整型 
     * @return ListNode类
     */
    public ListNode reverseBetween (ListNode head, int m, int n) {
        // write code here
        //哑巴节点减少边际问题
        ListNode dummy = new ListNode(-1);
        dummy.next = head;
        ListNode pre = dummy;
        //走到节点m-1处
        for(int i = 0;i<m-1;i++){
            pre = pre.next;
        }
        ListNode right = pre;
        //走到节点n处
        for(int j = 0;j<n-m+1;j++){
            right = right.next;
        }
        
        //截取
        ListNode left = pre.next;
        ListNode cur = right.next;
        
        //断开连接
        pre.next = null;
        right.next = null;
        
        //反转
        reverse(left);
        
        //连接
        pre.next = right;
        left.next = cur;
        return dummy.next;
    }
    public ListNode reverse(ListNode head){
        ListNode pre = null;
        ListNode cur = head;
        while(cur != null){
            ListNode flag = cur.next;
            cur.next = pre;
            pre = cur;
            cur = flag;
        }
        return cur;
    }
}
全部评论

相关推荐

11-08 17:36
诺瓦科技_HR
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务