您的位置:首页 > 其它

leetcode 70: Rotate List

2013-02-11 11:19 393 查看
Rotate ListMar
28 '12

Given a list, rotate the list to the right by k places, where k is
non-negative.

For example:

Given
1->2->3->4->5->NULL
and k =
2
,

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

/**
* Definition for singly-linked list.
* public class ListNode {
*     int val;
*     ListNode next;
*     ListNode(int x) {
*         val = x;
*         next = null;
*     }
* }
*/
public class Solution {
public ListNode rotateRight(ListNode head, int n) {
// Start typing your Java solution below
// DO NOT write main() function
if(head==null || n==0) return head;

ListNode p=head, q=head;
while( n-->0) {
q=q.next;
if( q==null) q=head;
}

if(q==head) return head;

while(q.next!=null){
q=q.next;
p=p.next;
}

ListNode temp = p.next;
q.next = head;
p.next = null;

return temp;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: