搜索插入位置
给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。
请必须使用时间复杂度为 O(log n)
的算法。
示例 1:
输入: nums = [1,3,5,6], target = 5 输出: 2
示例 2:
输入: nums = [1,3,5,6], target = 2 输出: 1
示例 3:文章来源:https://www.toymoban.com/news/detail-761851.html
输入: nums = [1,3,5,6], target = 7 输出: 4
提示:文章来源地址https://www.toymoban.com/news/detail-761851.html
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;
}
}
到了这里,关于LeeCode每日刷题12.8的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!