给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。
请必须使用时间复杂度为 O(log n) 的算法。
示例 1:
输入: nums = [1,3,5,6], target = 5
输出: 2
示例 2:
输入: nums = [1,3,5,6], target = 2
输出: 1
示例 3:
输入: nums = [1,3,5,6], target = 7
输出: 4
示例 4:
输入: nums = [1,3,5,6], target = 0
输出: 0
示例 5:
输入: nums = [1], target = 0
输出: 0
作者:力扣 (LeetCode)
链接:https://leetcode-cn.com/leetbook/read/array-and-string/cxqdh/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
代码
/**
* @param {number[]} nums
* @param {number} target
* @return {number}
*/
var searchInsert = function (nums, target) {
if (target < nums[0]) {
return 0;
} else if (target > nums[nums.length - 1]) {
return nums.length;
}
const ant = bindarySearch(nums, target);
const idx = nums.indexOf(ant);
if (ant >= target) {
return idx;
}
return idx + 1;
};
const bindarySearch = (nums, target) => {
const l = nums.length; // []
if (l === 1) {
return nums[0];
}
const idx = Math.floor(l / 2); // 0
if (nums[idx] > target) {
return bindarySearch(nums.slice(0, idx), target);
} else if (nums[idx] < target) {
return bindarySearch(nums.slice(idx, l), target);
} else {
return nums[idx];
}
};