LeeCode每日刷题12.8

搜索插入位置

给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。

请必须使用时间复杂度为 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

提示:

  • 1 <= nums.length <= 104
  • -104 <= nums[i] <= 104
  • nums 为 无重复元素 的 升序 排列数组
  • -104 <= target <= 104
class Solution {
    public int searchInsert(int[] nums, int target) {
              int index=0;
//1.找索引2.找插入位置
        for (int i = 0; i < nums.length ; i++) {
//找是否有目标值,有就返回索引
            if (nums[i]==target){
                return i;
            }
            //找到插入位置
            if (target>=nums[i]){
                index=i+1;
            }
        }
//返回插入的索引
return index;

    }
}

猜你喜欢

转载自blog.csdn.net/m0_63245620/article/details/134876466