leetcode61 旋轉鍊錶

2021-09-11 02:47:08 字數 2334 閱讀 5394

給定乙個鍊錶,旋轉鍊錶,將鍊錶每個節點向右移動 k 個位置,其中 k 是非負數。

示例 1:

輸入: 1->2->3->4->5->null, k = 2

輸出: 4->5->1->2->3->null

解釋:向右旋轉 1 步: 5->1->2->3->4->null

向右旋轉 2 步: 4->5->1->2->3->null

示例 2:

輸入: 0->1->2->null, k = 4

輸出: 2->0->1->null

解釋:向右旋轉 1 步: 2->0->1->null

向右旋轉 2 步: 1->2->0->null

向右旋轉 3 步: 0->1->2->null

向右旋轉 4 步: 2->0->1->null

先求鍊錶長,然後找到切的位置,然後前後換位就好:

# definition for singly-linked list.

# class listnode:

# def __init__(self, x):

# self.val = x

# self.next = none

class

solution

:def

rotateright

(self, head, k)

:"""

:type head: listnode

:type k: int

:rtype: listnode

"""ifnot head or

not head.

next

:return head

len_listnode, node =

0, head

while node:

len_listnode +=

1 node = node.

next

cut_length = len_listnode -

(k%len_listnode)

if cut_length ==

0or cut_length == len_listnode:

return head

node = head

for i in

range

(cut_length-1)

: node = node.

next

tmp = node.

next

node.

next

=none

after = tmp

while after.

next

: after = after.

next

after.

next

= head

return tmp

把鍊錶連成環了再找位置切開即可:
# definition for singly-linked list.

# class listnode:

# def __init__(self, x):

# self.val = x

# self.next = none

class

solution

:def

rotateright

(self, head, k)

:"""

:type head: listnode

:type k: int

:rtype: listnode

"""ifnot head or

not head.

next

:return head

len_listnode, node =

1, head

while node.

next

: len_listnode +=

1 node = node.

next

node.

next

= head # 先連成環,然後再切

for i in

range

(len_listnode-k%len_listnode)

: node = node.

next

res = node.

next

node.

next

=none

return res

leetcode 61 旋轉鍊錶

deciription 給定乙個鍊錶,旋轉鍊錶,將鍊錶每個節點向右移動 k 個位置,其中 k 是非負數。示例 1 輸入 1 2 3 4 5 null,k 2 輸出 4 5 1 2 3 null 解釋 向右旋轉 1 步 5 1 2 3 4 null 向右旋轉 2 步 4 5 1 2 3 null示例 ...

LeetCode61 旋轉鍊錶

很久沒有寫blog了,以至於很長一段時間我都忘記了我還有乙個csdn賬號。也就是每週參加以下leetcode周競賽,膜拜一下大佬,然後發現自己真的是蠢以及一無是處,想的辦法總是,非常蠢。一般就做簡單的題目,這道題是leetcode估計實在是看不下去了,給我email說邀請我做個演算法題,我看了一下,...

LeetCode 61 旋轉鍊錶

問題描述 給定乙個鍊錶,旋轉鍊錶,將鍊錶每個節點向右移動 k 個位置,其中 k 是非負數。示例 1 輸入 1 2 3 4 5 null,k 2 輸出 4 5 1 2 3 null 解釋 向右旋轉 1 步 5 1 2 3 4 null 向右旋轉 2 步 4 5 1 2 3 null 示例 2 輸入 0...