forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rotateList.cpp
49 lines (42 loc) · 1.2 KB
/
rotateList.cpp
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
// Source : https://oj.leetcode.com/problems/rotate-list/
// Author : Hao Chen
// Date : 2014-06-20
/**********************************************************************************
*
* 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.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode *rotateRight(ListNode *head, int k) {
if (!head || k<=0){
return head;
}
ListNode *p1, *p2=head;
for(int i=0; i<k; i++){
if (p2->next!=NULL){
p2 = p2->next;
} else {
//Shit! the K also rotated!
p2 = head;
}
}
for(p1=head; p2->next!=NULL; p1=p1->next, p2=p2->next);
p2->next = head;
head = p1->next;
p1->next = NULL;
return head;
}
};