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

[leetcode]Reverse Linked List II

时间:2014-12-03 00:29:30      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:leetcode   算法   

问题描述:

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->NULL, m = 2 and n = 4,

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

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


基本思路:

思路很简单,翻转链表注意指针的指向即可。

代码:

public ListNode reverse(ListNode head,int n)  //Java
	  {
		ListNode   tmp = head;
		int step = 1;
		tmp = tmp.next;
		ListNode tmphead = head;
		ListNode p = null;
		ListNode pre = head;
		while(step < n){
			 p = tmp.next;
			tmp.next = head;
			head = tmp;
			pre.next = p;
//			head.next = null;
			tmp = p;
			step++;
		}
		tmphead.next = p;
		return head;
	  }
	public ListNode reverseBetween(ListNode head, int m, int n) {
        if(head == null || head.next == null || m==n)
        	return head;
        ListNode result = new ListNode(0);
        result.next = head;
        ListNode p = head;
        ListNode pre =result;
        int pos = 1;
        while(pos != m){
        	pre = p;
        	p = p.next;
        	pos++;
        	
        }
        ListNode tmphead = reverse(p, n-m+1);
        pre.next = tmphead;
        return result.next;
    }


[leetcode]Reverse Linked List II

标签:leetcode   算法   

原文地址:http://blog.csdn.net/chenlei0630/article/details/41678473

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