public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param nums int整型一维数组
* @param target int整型
* @return int整型
*/
public int search (int[] nums, int target) {
// write code here
if (nums == null || nums.length < 1) {
return -1;
}
if (nums.length == 1) {
return nums[0] == target ? 0 : -1;
}
int start = 0, end = nums.length - 1;
while (end >= start) {
// 找到 左右指针中间位置
int mid = (end + start) >> 1;
if (nums[mid] == target) {
return mid;
}
// 在左侧升序数组中
if (nums[0] <= nums[mid]) {
// 在开头和 mid 之间,那么 右指针则为 mid -1
if (target >= nums[0] && target < nums[mid]) {
end = mid -1;
} else {
start = mid + 1;
}
} else {
// 如果在 mid 和end 之前,更新 start 为 mid = 1
if (target > nums[mid] && target <= nums[end]) {
start = mid + 1;
} else {
end = mid - 1;
}
}
}
return -1;
}
}