假设按照升序排序的数组在预先未知的某个点上进行了旋转。
( 例如,数组 [0,1,2,4,5,6,7] 可能变为 [4,5,6,7,0,1,2] )。
搜索一个给定的目标值,如果数组中存在这个目标值,则返回它的索引,否则返回 -1 。
你可以假设数组中不存在重复的元素。
你的算法时间复杂度必须是 O(log n) 级别。
示例 1:
输入: nums = [4,5,6,7,0,1,2], target = 0
输出: 4
示例 2:
输入: nums = [4,5,6,7,0,1,2], target = 3
输出: -1
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/search-in-rotated-sorted-array
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution { int [] nums; int target; public int find_rotate_index(int left, int right) { if (nums[left] < nums[right]) return 0; while (left <= right) { int pivot = (left + right) / 2; if (nums[pivot] > nums[pivot + 1]) return pivot + 1; else { if (nums[pivot] < nums[left]) right = pivot - 1; else left = pivot + 1; } } return 0; } public int search(int left, int right) { /* Binary search */ while (left <= right) { int pivot = (left + right) / 2; if (nums[pivot] == target) return pivot; else { if (target < nums[pivot]) right = pivot - 1; else left = pivot + 1; } } return -1; } public int search(int[] nums, int target) { this.nums = nums; this.target = target; int n = nums.length; if (n == 0) return -1; if (n == 1) return this.nums[0] == target ? 0 : -1; int rotate_index = find_rotate_index(0, n - 1); // if target is the smallest element if (nums[rotate_index] == target) return rotate_index; // if array is not rotated, search in the entire array if (rotate_index == 0) return search(0, n - 1); if (target < nums[0]) // search in the right side return search(rotate_index, n - 1); // search in the left side return search(0, rotate_index); } }
end,这道题关键在于理解题意,旋转点是指能让排序的数组旋转成两段有顺序且左边段大于右边段。然后思路就是先找这个是否是旋转过的数组,其次再看这个旋转点在什么地方,如果target的值大于数组的0处值说明target只可能在旋转后数组的左边部分,反之。。