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

[leetcode] Reverse Linked List II

时间:2014-07-02 20:12:57      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   strong   os   

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.

https://oj.leetcode.com/problems/reverse-linked-list-ii/

 

思路:链表操作。

bubuko.com,布布扣
public class Solution {
    public ListNode reverseBetween(ListNode head, int m, int n) {
        ListNode newHead = new ListNode(-1);
        newHead.next = head;
        ListNode p = newHead;
        for (int i = 0; i < m - 1; i++) {
            p = p.next;
        }
        ListNode pre = p;
        ListNode start = p.next;

        for (int i = 0; i < n - m; i++) {
            p = start.next;
            start.next = p.next;
            p.next = pre.next;
            pre.next = p;

        }

        return newHead.next;
    }

    public static void main(String[] args) {
        ListNode head = ListUtils.makeList(new int[] { 1, 2, 3, 4, 5 });
        ListUtils.printList(head);
        head = new Solution().reverseBetween(head, 4, 5);
        ListUtils.printList(head);
    }

}
View Code

 

 

[leetcode] Reverse Linked List II,布布扣,bubuko.com

[leetcode] Reverse Linked List II

标签:style   blog   http   color   strong   os   

原文地址:http://www.cnblogs.com/jdflyfly/p/3819328.html

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