Leetcode 189. Rotate Array

33 篇文章 0 订阅
30 篇文章 0 订阅

Given an array, rotate the array to the right by k steps, where k is non-negative.

Example 1:

Input: [1,2,3,4,5,6,7] and k = 3
Output: [5,6,7,1,2,3,4]
Explanation:
rotate 1 steps to the right: [7,1,2,3,4,5,6]
rotate 2 steps to the right: [6,7,1,2,3,4,5]
rotate 3 steps to the right: [5,6,7,1,2,3,4]

Example 2:

Input: [-1,-100,3,99] and k = 2
Output: [3,99,-1,-100]
Explanation:
rotate 1 steps to the right: [99,-1,-100,3]
rotate 2 steps to the right: [3,99,-1,-100]

tag: array

method 1 使用额外数组

method 2 Using Cyclic Replacements

使用循环替代,这个办法中要使用4个变量,current代表当前要移动的数,curIndex代表当前要移动的数的位置,next代表 current要移动到的位置上原本的数,nextIndex代表 current要被移动到的位置。基于的规则是这样的,每一次把当前数移到下一个它应该在的位置nextIndex上,为了避免使用额外数组存储,把nextIndex上的数重新赋给current,此时的next变为下一轮移动的current

但使用这个方法要注意一点,或者说对数组循环都要注意点,当n是k的倍数时,很可能循环回原来的位置,举例如下:

nums = {1,2,3,4,5,6}, k=2

我们从位置0开始,移动三次,得到{5,2,1,4,3,6},此时cureentIndex=2重新指回了1,然后就会一直循环下去,因此为了解决这个问题,要特殊处理,如下算法,for中多一层循环,检测是否回到了当初的位置

public void rotate(int[] nums, int k) {
        int nextIndex;
        int current;
        for (int i = 0; i < nums.length; curIndex++) {
            int start = curIndex;
            current = nums[curIndex];
            do {
                int nextIndex = (curIndex + k) % nums.length;
                int next = nums[nextIndex];
                nums[nextIndex] = current;
                current = next;
                curIndex = nextIndex;
                i++;
            }while (start != curIndex);
    }
}

method 3

先反转整个数组,然后再翻转前k个元素,再翻转后n-k个元素

public void rotate(int[] nums, int k) {
        k %= nums.length;
        reverse(nums, 0, nums.length - 1);
        reverse(nums, 0, k - 1);
        reverse(nums, k, nums.length - 1);
    }
    public void reverse(int[] nums, int start, int end) {
        while (start < end) {
            int temp = nums[start];
            nums[start] = nums[end];
            nums[end] = temp;
            start++;
            end--;
        }
    }

summary:

  1. 想要讲一组数往后/前移动k个位置,可以先移动整组数,然后再移动前k个,再移动后n-k个
  2. 循环替代中要注意是否会回到原位的情况
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值