Efficient Search in Rotated Sorted Arrays β€” LeetCode 33 Solution Explained

Binary Search in Rotated Sorted Array | LeetCode 33 Java Solution

πŸ“˜ Introduction

Searching in a rotated sorted array is a classic algorithmic challenge that tests your understanding of binary search in non-traditional setups. This problem often appears in technical interviews and has practical use cases in systems with circular data structures.

In this guide, we’ll break down an optimal binary search strategy to solve LeetCode Problem 33: Search in Rotated Sorted Array, compare it with a brute-force approach, and explain when and why it matters.


🧩 Problem Description

You’re given an array nums that was originally sorted in ascending order but was rotated at an unknown pivot. Your goal is to find the index of a given target value in the array. If the target is not present, return -1.

Example:
Input: nums = [4,5,6,7,0,1,2], target = 0
Output: 4


🐒 Brute Force Approach

The simplest way to solve this problem is by performing a linear search, scanning each element until the target is found.

βœ… Java Code: Linear Search

class Solution {
    public int search(int[] nums, int target) {
        for (int i = 0; i < nums.length; i++) {
            if (nums[i] == target) return i;
        }
        return -1;
    }
}
  • Time Complexity: O(n)
  • Space Complexity: O(1)

While easy to implement, this method is inefficient for large datasets. Let’s move on to a more optimal approach using binary search.


πŸš€ Optimal Approach: Modified Binary Search

The key idea is to leverage the properties of the rotated array: even though it’s rotated, at least one half of the array remains sorted. We use this fact to decide which half to search next.

πŸ”„ Strategy

  1. Initialize two pointers: low = 0, high = nums.length - 1
  2. Find the middle element: mid = (low + high) / 2
  3. If nums[mid] == target, return mid
  4. Determine which half is sorted:
    • If the left half is sorted (nums[low] <= nums[mid]), check if the target lies within it
    • Otherwise, the right half is sorted β€” check if the target lies there
  5. Narrow the search range accordingly

βœ… Java Code: Binary Search

class Solution {
    public int search(int[] nums, int target) {
        int low = 0, high = nums.length - 1;
        while (low <= high) {
            int mid = low + (high - low) / 2;
            if (nums[mid] == target) return mid;

            // Left half is sorted
            if (nums[low] <= nums[mid]) {
                if (target >= nums[low] && target < nums[mid]) {
                    high = mid - 1;
                } else {
                    low = mid + 1;
                }
            }
            // Right half is sorted
            else {
                if (target > nums[mid] && target <= nums[high]) {
                    low = mid + 1;
                } else {
                    high = mid - 1;
                }
            }
        }
        return -1;
    }
}

πŸ“ˆ Time & Space Complexity

  • Time Complexity: O(log n) β€” each iteration cuts the search space in half
  • Space Complexity: O(1) β€” no extra space used

🌍 Real-World Applications

Understanding this algorithm has practical value in various systems:

  1. Rotated Log Files – Searching within rotated system logs without reprocessing the entire dataset
  2. Cyclic Database Shards – Querying distributed data partitioned in a circular fashion
  3. IoT and Sensor Streams – Handling time-series data where rotation (cyclical resets) occurs

πŸ’‘ Why This Problem Matters

LeetCode 33 is a favorite interview question at top tech companies like Google, Amazon, Facebook, and Microsoft. It tests your ability to apply and adapt binary search β€” a foundational algorithm β€” to real-world constraints.

Solving this problem efficiently showcases:

  • Analytical thinking
  • Edge case handling
  • Code optimization skills

βœ… Conclusion

Mastering search in a rotated sorted array prepares you for tricky variations of binary search questions. The brute-force approach is easy, but the optimal binary search solution provides a significant performance advantage for large inputs.

By understanding which half of the array is sorted at each step, you can zero in on the target in logarithmic time.

Practice Tip: Implement this solution in your preferred language and test it with edge cases like arrays with one element, no rotation, or all identical elements (if allowed by constraints).

Try it yourself: Solve it on LeetCode


Keywords: search rotated array, LeetCode 33 Java solution, binary search variation, rotated array algorithm, efficient target search, coding interview prep


Let me know if you want a version for Python or C++ as well!

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *