题目描述
给定一个链表,旋转链表,将链表每个节点向右移动 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
思路解析
1、首先计算链表的长度
2、新产生的链表原链表尾指针一定连在头指针上。
3、找到新的头结点
4、断链
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution:
def rotateRight(self, head: ListNode, k: int) -> ListNode:
if head is None or head.next is None:
return head
#记录结点总数
nodesNum = 0
#保存尾结点之外的所有结点,不然无法定位尾结点
nodeList = []
#开始记录结点
temp = head
while temp.next is not None:
nodeList.append(temp)
temp = temp.next
nodesNum += 1
tail = temp
nodesNum += 1
#通过求余,确定实际需要旋转的步数
rotate = k % nodesNum
if rotate == 0:
return head
#尾结点一定会连接到头结点上,变成环
tail.next = head
#找到切断点作为新的尾结点
new_tail = nodeList[nodesNum-rotate-1]
#切断点后的结点一定是新的头结点
new_head = new_tail.next
#将尾结点后的结点置位None
new_tail.next = None
return new_head
AC61
网友评论