33. Search in Rotated Sorted Array
Source: https://leetcode.com/problems/search-in-rotated-sorted-array/description/
Approach
Search in the rotated sorted array, we need to decide our search range, like binary search. We first define reverse point be the entry where
\[a[i - 1] > a[i] \text{ and } a[i + 1] > a[i]\]
-
If
nums[low] <= nums[mid]
-
If
nums[low] > nums[mid]
, the reverse point lie in the range.
Complexity
- Time complexity: \(O(\log n)\)
- Space complexity: \(O(1)\)