目录

力扣35. 搜索插入位置

力扣35. Search Insert Position(搜索插入位置)

给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。请必须使用时间复杂度为 O(log n) 的算法。

示例 1:

../posts/01_学习/87_LeetCode/0035_搜索插入位置/img/0035-1-description.png

输入:nums = [1,3,5,6], target = 5
输出:2

示例 2:

../posts/01_学习/87_LeetCode/0035_搜索插入位置/img/0035-2-description.png

输入:nums = [1,3,5,6], target = 2
输出:1

示例 3:

../posts/01_学习/87_LeetCode/0035_搜索插入位置/img/0035-3-description.png

输入:nums = [1,3,5,6], target = 7
输出:4

提示:

  • 1 <= nums.length <= 10^4
  • -10^4 <= nums[i] <= 10^4
  • nums 为无重复元素的升序排列数组
  • -10^4 <= target <= 10^4