forked from qiyuangong/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path061_Rotate_List.py
38 lines (33 loc) · 930 Bytes
/
061_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
# Definition for singly-linked list.
# class ListNode(object):
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution(object):
def rotateRight(self, head, k):
"""
:type head: ListNode
:type k: int
:rtype: ListNode
"""
if not head or k == 0:
return head
slow = fast = head
length = 1
while k and fast.next:
fast = fast.next
length += 1
k -= 1
if k != 0:
k = (k + length - 1) % length # original k % length
return self.rotateRight(head, k)
else:
while fast.next:
fast = fast.next
slow = slow.next
return self.rotate(head, fast, slow)
def rotate(self, head, fast, slow):
fast.next = head
head = slow.next
slow.next = None
return head