-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathRotateList.cpp
50 lines (41 loc) · 882 Bytes
/
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
50
/*
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.
LINK: https://www.interviewbit.com/problems/rotate-list/
*/
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
ListNode* Solution::rotateRight(ListNode* A, int B)
{
if(A==NULL)
return A;
ListNode *temp = A, *head = A;
int cnt=0;
while(temp)
{
temp = temp->next;
cnt++;
}
B = B%cnt;
if(B==0)
return A;
B = cnt-B;
temp = A;
for(int i=0;i<B-1;i++)
temp = temp->next;
head = temp->next;
temp->next = NULL;
temp = head;
while(temp->next)
temp = temp->next;
temp->next = A;
return head;
}