comments | difficulty | edit_url |
---|---|---|
true |
Medium |
Given a sorted array of n integers that has been rotated an unknown number of times, write code to find an element in the array. You may assume that the array was originally sorted in increasing order. If there are more than one target elements in the array, return the smallest index.
Example1:
Input: arr = [15, 16, 19, 20, 25, 1, 3, 4, 5, 7, 10, 14], target = 5
Output: 8 (the index of 5 in the array)
Example2:
Input: arr = [15, 16, 19, 20, 25, 1, 3, 4, 5, 7, 10, 14], target = 11
Output: -1 (not found)
Note:
1 <= arr.length <= 1000000
We define the left boundary of the binary search as
In each binary search process, we get the current midpoint
- If
$nums[mid] > nums[r]$ , it means that$[l,mid]$ is ordered. If$nums[l] \leq target \leq nums[mid]$ , it means that$target$ is in$[l,mid]$ , otherwise$target$ is in$[mid+1,r]$ . - If
$nums[mid] < nums[r]$ , it means that$[mid+1,r]$ is ordered. If$nums[mid] < target \leq nums[r]$ , it means that$target$ is in$[mid+1,r]$ , otherwise$target$ is in$[l,mid]$ . - If
$nums[mid] = nums[r]$ , it means that the elements$nums[mid]$ and$nums[r]$ are equal. At this time, we cannot determine which interval$target$ is in, we can only decrease$r$ by$1$ .
After the binary search ends, if
Note that if initially
The time complexity is approximately
Similar problems:
class Solution:
def search(self, arr: List[int], target: int) -> int:
l, r = 0, len(arr) - 1
while arr[l] == arr[r]:
r -= 1
while l < r:
mid = (l + r) >> 1
if arr[mid] > arr[r]:
if arr[l] <= target <= arr[mid]:
r = mid
else:
l = mid + 1
elif arr[mid] < arr[r]:
if arr[mid] < target <= arr[r]:
l = mid + 1
else:
r = mid
else:
r -= 1
return l if arr[l] == target else -1
class Solution {
public int search(int[] arr, int target) {
int l = 0, r = arr.length - 1;
while (arr[l] == arr[r]) {
--r;
}
while (l < r) {
int mid = (l + r) >> 1;
if (arr[mid] > arr[r]) {
if (arr[l] <= target && target <= arr[mid]) {
r = mid;
} else {
l = mid + 1;
}
} else if (arr[mid] < arr[r]) {
if (arr[mid] < target && target <= arr[r]) {
l = mid + 1;
} else {
r = mid;
}
} else {
--r;
}
}
return arr[l] == target ? l : -1;
}
}
class Solution {
public:
int search(vector<int>& arr, int target) {
int l = 0, r = arr.size() - 1;
while (arr[l] == arr[r]) {
--r;
}
while (l < r) {
int mid = (l + r) >> 1;
if (arr[mid] > arr[r]) {
if (arr[l] <= target && target <= arr[mid]) {
r = mid;
} else {
l = mid + 1;
}
} else if (arr[mid] < arr[r]) {
if (arr[mid] < target && target <= arr[r]) {
l = mid + 1;
} else {
r = mid;
}
} else {
--r;
}
}
return arr[l] == target ? l : -1;
}
};
func search(arr []int, target int) int {
l, r := 0, len(arr)-1
for arr[l] == arr[r] {
r--
}
for l < r {
mid := (l + r) >> 1
if arr[mid] > arr[r] {
if arr[l] <= target && target <= arr[mid] {
r = mid
} else {
l = mid + 1
}
} else if arr[mid] < arr[r] {
if arr[mid] < target && target <= arr[r] {
l = mid + 1
} else {
r = mid
}
} else {
r--
}
}
if arr[l] == target {
return l
}
return -1
}
function search(arr: number[], target: number): number {
let [l, r] = [0, arr.length - 1];
while (arr[l] === arr[r]) {
--r;
}
while (l < r) {
const mid = (l + r) >> 1;
if (arr[mid] > arr[r]) {
if (arr[l] <= target && target <= arr[mid]) {
r = mid;
} else {
l = mid + 1;
}
} else if (arr[mid] < arr[r]) {
if (arr[mid] < target && target <= arr[r]) {
l = mid + 1;
} else {
r = mid;
}
} else {
--r;
}
}
return arr[l] === target ? l : -1;
}
class Solution {
func search(_ arr: [Int], _ target: Int) -> Int {
var l = 0
var r = arr.count - 1
while arr[l] == arr[r] && l < r {
r -= 1
}
while l < r {
let mid = (l + r) >> 1
if arr[mid] > arr[r] {
if arr[l] <= target && target <= arr[mid] {
r = mid
} else {
l = mid + 1
}
} else if arr[mid] < arr[r] {
if arr[mid] < target && target <= arr[r] {
l = mid + 1
} else {
r = mid
}
} else {
r -= 1
}
}
return arr[l] == target ? l : -1
}
}