当前位置: 代码迷 >> 综合 >> 【奇技淫巧】-- 原地旋转链表
  详细解决方案

【奇技淫巧】-- 原地旋转链表

热度:7   发布时间:2024-02-01 15:35:38.0

题目

给定一个链表,旋转链表,将链表每个节点向右移动 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

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/rotate-list
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

思路

链表中的点已经相连,一次旋转操作意味着:

先将链表闭合成环
找到相应的位置断开这个环,确定新的链表头和链表尾

在这里插入图片描述

代码实现

class Solution {public ListNode rotateRight(ListNode head, int k) {// base casesif (head == null) return null;if (head.next == null) return head;// close the linked list into the ringListNode old_tail = head;int n;for(n = 1; old_tail.next != null; n++)old_tail = old_tail.next;old_tail.next = head;// find new tail : (n - k % n - 1)th node// and new head : (n - k % n)th nodeListNode new_tail = head;for (int i = 0; i < n - k % n - 1; i++)new_tail = new_tail.next;ListNode new_head = new_tail.next;// break the ringnew_tail.next = null;return new_head;}
}> 作者:LeetCode
> 链接:https://leetcode-cn.com/problems/rotate-list/solution/xuan-zhuan-lian-biao-by-leetcode/
> 来源:力扣(LeetCode) 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。