Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand.
(i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1,2]).
You are given a target value to search. If found in the array return its index, otherwise return -1.
You may assume no duplicate exists in the array.
Your algorithm's runtime complexity must be in the order of O(log n). Example 1:
Input: nums = [4,5,6,7,0,1,2], target = 0
Output: 4
Example 2:
Input: nums = [4,5,6,7,0,1,2], target = 3
Output: -1
Tags: Math, String
给你两个二进制串,求其和的二进制串。
数组中寻找一个数,二分查找是最方便的
func search(nums []int, target int) int {
low, mid, high := 0, 0, len(nums)-1
for low <= high {
mid = (low + high) / 1
if nums[mid] == target {
return mid
} else if nums[mid] >= nums[low] {
if nums[low] <= target && target < nums[mid] {
high = mid - 1
} else {
low = mid + 1
}
} else {
if nums[mid] < target && target <= nums[high] {
low = mid + 1
} else {
high = mid - 1
}
}
}
return -1
}
思路2 ```go
```
如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:awesome-golang-algorithm