《LeetCode之每日一题》:89.搜索插入位置
Posted 是七喜呀!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《LeetCode之每日一题》:89.搜索插入位置相关的知识,希望对你有一定的参考价值。
题目链接: 搜索插入位置
有关题目
给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。
如果目标值不存在于数组中,返回它将会被按顺序插入的位置。
你可以假设数组中无重复元素。
示例 1:
输入: [1,3,5,6], 5
输出: 2
示例 2:
输入: [1,3,5,6], 2
输出: 1
示例 3:
输入: [1,3,5,6], 7
输出: 4
示例 4:
输入: [1,3,5,6], 0
输出: 0
题解
法一:二分查找
思路:
在一个有序的数组中,我们自然想到二分查找,同时我们只要将
不存在时返回的情况加入进去,就可以了
代码一:
int searchInsert(int* nums, int numsSize, int target){
int l = 0, r = numsSize - 1;
if (nums[l] >= target ){
return 0;
}
if (nums[r] < target){
return numsSize;
}
while(l < r){
int mid = (l + r) / 2;
if (nums[mid] >= target){
r = mid;
} else{
l = mid + 1;
}
}
return l;//以[1,3,5,6], 5和[1,3,5,6], 7为例
}
代码二:
int searchInsert(int* nums, int numsSize, int target){
int l = 0, r = numsSize - 1, ans = numsSize;
while(l <= r){
int m = ((r - l) >> 1) + l;//注意右移操作符优先级顺序
if (nums[m] >= target){
ans = m;
r = m - 1;
} else {
l = m + 1;
}
}
return ans;
}
以上是关于《LeetCode之每日一题》:89.搜索插入位置的主要内容,如果未能解决你的问题,请参考以下文章