-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrotate a LL.cpp
More file actions
48 lines (39 loc) · 1020 Bytes
/
Copy pathrotate a LL.cpp
File metadata and controls
48 lines (39 loc) · 1020 Bytes
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
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* rotateRight(ListNode* head, int k) {
if (!head || !head->next || k == 0)
return head;
int cnt = 1;
ListNode* temp = head;
// find length and last node
while (temp->next != NULL) {
temp = temp->next;
cnt++;
}
k = k % cnt;
if (k == 0) return head;
// make circular
temp->next = head;
// move to new tail (cnt - k steps)
int steps = cnt - k;
temp = head;
for (int i = 1; i < steps; i++) {
temp = temp->next;
}
// new head
head = temp->next;
// break circle
temp->next = NULL;
return head;
}
};