35. Search Insert Position

发布时间:2022-06-26 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了35. Search Insert Position脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.

You must write an algorithm with O(log n) runtime complexity.

Example 1:

Input: nums = [1,3,5,6], target = 5 Output: 2 Example 2:

Input: nums = [1,3,5,6], target = 2 Output: 1 Example 3:

Input: nums = [1,3,5,6], target = 7 Output: 4

Constraints:

1 <= nums.length <= 104 -104 <= nums[i] <= 104 nums contains distinct values sorted in ascending order. -104 <= target <= 104

Solution:

Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.

You must write an algorithm with O(log n) runtime complexity.

 

Example 1:

Input: nums = [1,3,5,6], target = 5
Output: 2
Example 2:

Input: nums = [1,3,5,6], target = 2
Output: 1
Example 3:

Input: nums = [1,3,5,6], target = 7
Output: 4
 

Constraints:

1 <= nums.length <= 104
-104 <= nums[i] <= 104
nums contains distinct values sorted in ascending order.
-104 <= target <= 104

class Solution { public: int searchInsert(vector& nums, int target) { int max = nums.size() -1 ; int min = 0; int mid = 0; int position = 0; if(target > nums[max]) return max+1; if(target < nums[min]) return min; while(max > min) { mid = min + (max - min)/2; if(target == nums[mid]) { return mid; } if(target > nums[mid]) { min = mid+1; }else { max = mid; } } return max;

}

};


优化

class Solution { public: int searchInsert(vector& nums, int target) { int lo = 0, hi = nums.size()-1; while(lo <= hi){ int mid = lo+(hi-lo)/2; if(target == nums[mid]) return mid; else if(target > nums[mid]) lo = mid + 1; else hi = mid -1; } return lo; } };

脚本宝典总结

以上是脚本宝典为你收集整理的35. Search Insert Position全部内容,希望文章能够帮你解决35. Search Insert Position所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: