搜索插入位置
给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。
请必须使用时间复杂度为 O(log n) 的算法。
解题思路:折半查找,折半查找失败时 low > high 所以high 在 low前面一个位置 题目要求返回查找失败时 要插入的位置,返回low
class Solution {
public int searchInsert(int[] nums, int target) {
int low = 0,high = nums.length - 1;
while(low <= high)
{
int mid = low + (high - low)/2;
if(nums[mid] == target)
{
return mid;
}
else if(nums[mid] < target)
{
low = mid + 1;
}
else if(nums[mid] > target)
{
high = mid - 1;
}
}
//如果要查找的数字不存在 那么直接返回要插入的位置low
return low;
}
}