public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param nums int整型一维数组
* @param target int整型
* @return int整型
*/
public int search (int[] nums, int target) {
// write code here
int start=0,end=nums.length-1;
while(start<=end){
int middle=(start+end)/2;
if(nums[middle]==target) return middle;
else if(nums[middle]>target) end=middle-1;
else start=middle+1;
}
//如果不存在,最终end会大于start。所以要注意上面的end和start不能等于middle,免得无限循环;
return -1;
}
}