ReveseList

来源:互联网 发布:php如何加密源码软件 编辑:程序博客网 时间:2024/06/06 07:35

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

For example:
Given1->2->3->4->5->NULL, m = 2 and n = 4,

return1->4->3->2->5->NULL.

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

package leetcode;

public class ReverseList {
public ListNode reverseBetween(ListNode head,int m,int n){
if(head==null)
return null;
ListNode helper=new ListNode(0);
helper.next=head;
ListNode pre=helper;
int i=1;
while(pre.next!=null&&i

原创粉丝点击