189. Rotate Array - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

Given an integer array nums, rotate the array to the right by k steps, where k is non-negative. This means that the array’s elements are shifted to the right k times, with elements wrapping around from the end to the beginning.

Examples

  1. Input: nums = [1,2,3,4,5,6,7], k = 3
    Output: [5,6,7,1,2,3,4]
    Explanation: Rotate the array right by 3 steps. The last three elements [5,6,7] move to the front.

  2. Input: nums = [-1,-100,3,99], k = 2
    Output: [3,99,-1,-100]
    Explanation: Rotate the array right by 2 steps. The last two elements [3,99] move to the front.

Constraints

  • 1 <= nums.length <= 10^5
  • -2^31 <= nums[i] <= 2^31 - 1
  • 0 <= k <= 10^5

(If k is larger than the array length n, effective rotation is k % n because rotating n times brings the array back to original.)

Hints to Solve the Problem

  1. Using Extra Space: Consider making a copy of the array and placing each element in its new rotated position.
  2. Using Cyclic Replacement: Try to visualize how elements move in cycles when rotating. You might traverse the array by jumping indices.
  3. Using Reverse Technique: A clever trick is to reverse parts of the array to achieve the rotation in-place efficiently.

Approaches to Solve the Problem

Approach 1: Brute Force (Inefficient for Large Inputs)

Idea: Rotate the array one step at a time, repeated k times. In each single-step rotation, take the last element of nums and move it to the front, while shifting all other elements one position to the right. This will eventually rotate the array by k positions, but it performs a lot of unnecessary moves when k is large.

Complexity: Each step rotation is O(n), and doing this k times leads to O(n * k) time complexity , which is very slow when both n and k are large. Space complexity is O(1) (in-place rotation).

Approach 2: Using Extra Space

Idea: Use an additional array to re-arrange elements in one pass. Specifically, create a new array temp of the same length. For each index i in the original array, place nums[i] into temp[(i + k) % n]. This calculation finds the new index for element nums[i] after rotation (using modulo to wrap around). After this, copy the temp array back into nums to reflect the rotation.

Complexity: This method uses a single loop to fill the new array, so the time complexity is O(n). However, it requires extra space of size n for the temporary array (space complexity O(n)). In practice, it’s efficient for time but uses more memory.

Approach 3: Using Reversal (Optimal Solution)

Idea: This optimal in-place solution uses the reversal algorithm. The process is:

  1. Reverse the entire array.
  2. Reverse the first k elements.
  3. Reverse the remaining n - k elements.

Reversing the whole array puts the last k elements in front, but in reverse order. Then reversing the first k restores those k elements to their correct order at the front. Finally, reversing the rest of the array fixes the order of the remaining elements. After these three reversals, the array is rotated to the right by k positions.

Complexity: All operations are done in-place with a few swaps, and each element is moved at most once. The time complexity is O(n) for reversing the segments, and space complexity is O(1) (only a few variables for swapping). This meets the optimal requirements.

Python Code

Python3
Python3

. . . .

Java Code

Java
Java

. . . .

Step-by-Step Walkthrough

  1. Brute Force Approach: Repeatedly rotate the array one step at a time for k steps. This is straightforward but very slow for large inputs.
  2. Extra Space Approach: Use a temporary array to calculate the final rotated positions in one pass, then copy back. This avoids multiple rotations but uses extra memory.
  3. Reversal Approach: Perform three reversals on the array to achieve the rotation in-place. This method is efficient and uses no additional array space.

Common Mistakes and Edge Cases

  • Handling k >= n: Always reduce k modulo n (k = k % n). If k is equal to the array length or a multiple of it, the array ends up unchanged, so failing to mod by n can cause unnecessary rotations or index errors.

  • No Rotation (k = 0): If k = 0, the array should remain unchanged. Make sure the code handles this gracefully (the algorithms above naturally do nothing when k = 0 after the modulo adjustment).

  • Single-Element Array: If nums.length == 1, any rotation has no effect. Algorithms should ideally recognize this (the modulo operation also covers this since k % 1 = 0).

Alternative Variations

  • Left Rotation: Modify the problem to rotate the array to the left by k steps instead. (Hint: For left rotation, you can reverse the first k elements, reverse the remaining elements, and then reverse the entire array – essentially the opposite order of the right rotation reversal method.)

  • Rotation in Circular Arrays: The rotation logic is applicable in scenarios like circular buffers or queues. For example, in a circular queue, rotating the array corresponds to moving the head/tail pointers. Understanding array rotation helps in implementing such circular data structures.

  • Left Rotate an Array: Perform the rotation in the opposite direction (left shift) using similar techniques.
  • Reverse Words in a String: A problem where a similar reversal strategy is used (reverse the entire string, then reverse each word) – analogous to the reversal approach in array rotation.
  • Cyclic Sort Variations: Problems that involve cycling elements or indices (though not exactly array rotation, they involve moving elements through cycles, which is conceptually related to the cyclic replacement hint).
TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
How to talk to HR for a job?
Is OpenAI interview hard?
How to clear a behavioral interview?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;