【Day 7 】2021-05-16 - 61. 旋转链表

题目描述

61. 旋转链表

入选理由

暂无

题目地址

https://leetcode-cn.com/problems/rotate-list/

前置知识

暂无

题目描述

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

我的回答

https://github.com/leetcode-pp/91alg-4/issues/52#issuecomment-841775358

解法一

时空复杂度

时间复杂度:O(n)

空间复杂度: O(1)

/**
 * Definition for singly-linked list.
 * function ListNode(val, next) {
 *     this.val = (val===undefined ? 0 : val)
 *     this.next = (next===undefined ? null : next)
 * }
 */
/**
 * @param {ListNode} head
 * @param {number} k
 * @return {ListNode}
 */
var rotateRight = function (head, k) {
    if (!head || !head.next || !k) return head
    let length = 1
    let newHead = head
    while (head.next) {
        length++
        head = head.next
    }
    head.next = newHead
    let newlength = length - k % length
    while (newlength) {
        head = head.next
        newlength--
    }
    const curr = head.next
    head.next = null
    return curr
 
};

参考回答