-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy path0061-rotate-list.py
38 lines (31 loc) · 886 Bytes
/
0061-rotate-list.py
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
# time complexity: O(n)
# space complexity: O(1)
from typing import Optional
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
class Solution:
def rotateRight(self, head: Optional[ListNode], k: int) -> Optional[ListNode]:
if head is None or head.next is None:
return head
oldTail = head
n = 1
while oldTail.next:
oldTail = oldTail.next
n += 1
k = k % n
oldTail.next = head
newTail = head
for i in range(1, n-k):
newTail = newTail.next
newHead = newTail.next
newTail.next = None
return newHead
root = ListNode(1)
root.next = ListNode(2)
root.next.next = ListNode(3)
root.next.next.next = ListNode(4)
root.next.next.next.next = ListNode(5)
k = 2
print(Solution().rotateRight(root, k))