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

Reverse Linked List II

时间:2017-02-14 13:41:33      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:ack   comm   ace   nowrap   head   list   text   div   add   

Reverse a linked list from position m to n.

 Notice

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

Example

Given 1->2->3->4->5->NULL, m = 2 and n = 4, return 1->4->3->2->5->NULL.

分析


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/**
 * Definition for ListNode
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    /**
     * @param ListNode head is the head of the linked list 
     * @oaram m and n
     * @return: The head of the reversed ListNode
     */
    public ListNode reverseBetween(ListNode head, int m , int n) {
        // write your code
        ListNode nhead = new ListNode(-1);
        ListNode h = nhead;
        h.next = head;
        ListNode l1 = head, l2;
         
        int count = 1;
        while(count < m){
            h = l1;
            l1 = l1.next;
            count++;
        }
        //h  l1
        //1->2<-3->4->5->NULL
         
        ListNode last = null;
        while(count < n){
            ListNode tmp = l1.next;
            l1.next = last;
            last = l1;
            l1 = tmp;
            count++;
        }
        //h     L  l1 
        //1->2<-3->4->5->NULL
         
        ListNode end = l1.next;
        //h     L  l1 e
        //1->2<-3->4->5->NULL
         
        l1.next = last;
        //h     L  l1 e
        //1->2<-3<-4  5->NULL
         
        h.next.next = end;
        //h     L  l1 e
        //1->2<-3<-4  5->NULL
        //   |________|        
        h.next = l1;
         
         
        return nhead.next;
         
    }
}




Reverse Linked List II

标签:ack   comm   ace   nowrap   head   list   text   div   add   

原文地址:http://www.cnblogs.com/zhxshseu/p/5420abdf4ecf71e8885d1abd91ef7b72.html

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