LeetCode Search Insert Position (二分查找)

题意

Given a sorted array 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 may assume no duplicates in the array.
Here are few examples.
[1,3,5,6], 5 → 2
[1,3,5,6], 2 → 1
[1,3,5,6], 7 → 4
[1,3,5,6], 0 → 0
给定一个有序数组和一个目标值,查找出目标值在数组中出现的位置,如果没有出现,则返回它应该插入的位置。

解法

二分查找,记录mid值,查找结束后判断nums[mid] == target,如果相等的话就返回,不相等的话判断这个位置上的值是不是比target大,如果比它大那么target就直接插在mid这个位置,比target小的话就把target插入到下一个位置。

class Solution
{
public:
    int searchInsert(vector<int>& nums, int target)
    {
	    int	left = 0;
	    int	right = nums.size() - 1;
	    int	mid = 0;
	    int	index = 0;

	    while(left <= right)
	    {
		    mid = (left + right) >> 1;
		    if(nums[mid] == target)
		    {
			    index = mid;
			    break;
		    }
		    else
			    if(nums[mid] < target)
				    left = mid + 1;
			    else
				    right = mid - 1;
	    }
	    if(nums[index] == target)
		    return	index;
	    if(target > nums[mid])
		    return	mid + 1;
	    else
		    return	mid;
    }
};
posted @   Decouple  阅读(242)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· 展开说说关于C#中ORM框架的用法!
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
点击右上角即可分享
微信分享提示