/*给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。
如果目标值不存在于数组中,返回它将会被按顺序插入的位置。
请必须使用时间复杂度为 O(log n) 的算法。
示例 1:
输入: nums = [1,3,5,6], target = 5
输出: 2
*/
//折半查找
public class BiSearch {
public int searchInsert(int[] nums, int target) {
int low = 0, high = nums.length - 1;
while(low <= high) {
int mid = (low + high) / 2;
if(nums[mid] == target) {
return mid;
} else if(nums[mid] < target) {
low = mid + 1;
} else {
high = mid - 1;
}
}
return low;
}
}
/* 题目:顺序数组nums[],在数组中查找target在数组中的下标
* */
//顺序查找
public class SequenceSearch {
public int search(int[] nums,int target){
if(nums[0]==target){
return 0;
}
int i=nums.length;
nums[0]=target;
for(;nums[i]!=target;i--);
return i;
}
}
题目链接:力扣