zoukankan      html  css  js  c++  java
  • leetcode : Reverse Linked List II [two pointers]

     

    Reverse a linked list from position m to n. Do it in-place and in one-pass.

     

    For example:
    Given 1->2->3->4->5->NULLm = 2 and n = 4,

     

    return 1->4->3->2->5->NULL.

     

    Note:
    Given mn satisfy the following condition:
    1 ≤ m ≤ n ≤ length of list.

    tag: two pointer

    /**
     * Definition for singly-linked list.
     * public class ListNode {
     *     int val;
     *     ListNode next;
     *     ListNode(int x) { val = x; }
     * }
     */
    public class Solution {
        public ListNode reverseBetween(ListNode head, int m, int n) {
            if(head == null || head.next == null|| m >= n || m <= 0 || n <= 0 ) {
                return head;
            }
            
            ListNode dummy = new ListNode(0);
            dummy.next = head;
            head = dummy;
            
            for(int i = 1; i < m; i++) {
                if(head == null) {
                    return null;
                }
                head = head.next;
            }
            
            ListNode preM = head;
            ListNode mNode = head.next;
            ListNode nNode = mNode;
            ListNode nextN = mNode.next;
            
            for(int j = m; j < n; j++) {
                if(nextN == null) {
                    return null;
                }
                ListNode tmp = nextN.next;
                nextN.next = nNode;
                nNode = nextN;
                nextN = tmp;
            }
            preM.next = nNode;
            mNode.next = nextN;
           
           return dummy.next;
        }
    }
    

      

     

  • 相关阅读:
    Dapper的常用操作
    git下载慢的解决方案
    笔记
    第06组 Beta冲刺(3/5)
    第06组 Beta冲刺(2/5)
    第06组 Beta冲刺(1/5)
    第06组 Alpha事后诸葛亮
    第06组 Alpha冲刺(6/6)
    第06组 Alpha冲刺(5/6)
    第06组 Alpha冲刺(4/6)
  • 原文地址:https://www.cnblogs.com/superzhaochao/p/6583121.html
Copyright © 2011-2022 走看看