LC 189 Rotate Array(S)

Rotate an array of n elements to the right by k steps. (3 Ways)

For example, with n = 7 and k = 3, the array [1,2,3,4,5,6,7] is rotated to [5,6,7,1,2,3,4]. How many different ways do you know to solve this problem? Solution 1 - Intermediate Array Solution 2 - Bubble Rotate Solution 3 - Reversal

Solution 1 - Intermediate Array

In a straightforward way, we can create a new array and then copy elements to the new array. Then change the original array by using System.arraycopy(). Space is O(n) and Time is O(n).

public void rotate(int[] nums, int k) {
    // 保证 k < length
    if(k > nums.length) 
        k=k%nums.length;
     int[] result = new int[nums.length];
     // 移动 0 到 k-1
     for(int i=0; i < k; i++){
        result[i] = nums[nums.length-k+i];
    }
    // 移动 k 到 length - 1
    int j=0;
    for(int i=k; i<nums.length; i++){
        result[i] = nums[j];
        j++;
    }
     System.arraycopy( result, 0, nums, 0, nums.length );
}

Solution 2 - Bubble Rotate Can we do this in O(1) space? This solution is like a bubble sort Space is O(1) and Time is O(n*k).

Solution 3 Reversal Can we do this in O(1) space and in O(n) time? The following solution does. Assuming we are given {1,2,3,4,5,6} and order 2. The basic idea is:

Space is O(1) and Time is O(n).

Last updated