每日一练-leetcode
搜索插入位置
给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。
请必须使用时间复杂度为 O(log n) 的算法。
class Solution {
public int searchInsert(int[] nums, int target) {
if(target > Arrays.stream(nums).max().getAsInt()){
return nums.length;
}
for(int i = 0;i < nums.length;i++){
if(nums[i] >= target){
return i;
}else{
continue;
}
}
return -1;
}
}
此题要求的算法复杂度意思是只能有一个for循环
Arrays.stream(nums).max().getAsInt()此函数为求数组变最大值,当然你也可以使用nums[nums.length-1]