LeetCode-61. 旋转链表

版权声明:本文为博主原创文章,转载请注明出处 https://blog.csdn.net/love905661433/article/details/84931256

题目

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

解题

  • 说是旋转, 其实就是将链表分割成两部分, 然后重新组合起来即可
  • 使用双索引, 代码如下:
class Solution {
    public ListNode rotateRight(ListNode head, int k) {
        if (head == null || head.next == null){
            return head;
        }

        ListNode cur = head;
        int length = 0;
        while (cur != null) {
            cur = cur.next;
            length ++;
        }

        k = k % length;
        if(k == 0) {
            return head;
        }
        ListNode first = head;
        ListNode second = head;
        for (int i = 0; i < k; i++) {
            first = first.next;
        }

        while (first != null){
            if (first.next == null){
                break;
            }
            first = first.next;
            second = second.next;
        }

        ListNode newHead = second.next;
        second.next = null;
        first.next = head;

        return newHead;
    }
}

猜你喜欢

转载自blog.csdn.net/love905661433/article/details/84931256