algorithm-base/animation-simulation/二分查找及其变种/leetcode35搜索插入位置.md

72 lines
2.2 KiB
Java
Raw Normal View History

2021-07-27 18:26:32 +00:00
> **[tan45du_one](https://raw.githubusercontent.com/tan45du/tan45du.github.io/master/个人微信.15egrcgqd94w.jpg)** ,备注 github + 题目 + 问题 向我反馈
2021-03-20 09:16:07 +00:00
>
>
>
2021-07-23 15:44:19 +00:00
> <u>[****](https://raw.githubusercontent.com/tan45du/test/master/微信图片_20210320152235.2pthdebvh1c0.png)</u> 两个平台同步,想要和题友一起刷题,互相监督的同学,可以在我的小屋点击<u>[**刷题小队**](https://raw.githubusercontent.com/tan45du/test/master/微信图片_20210320152235.2pthdebvh1c0.png)</u>进入。
2021-03-20 09:16:07 +00:00
#### [35. ](https://leetcode-cn.com/problems/search-insert-position/)
2021-03-18 04:47:47 +00:00
####
>
>
>
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
####
left
![](https://img-blog.csdnimg.cn/img_convert/d806cb5199c4baeebc62bebe29d7eded.gif)
####
2021-07-23 15:50:29 +00:00
Java Code:
2021-03-18 04:47:47 +00:00
```java
class Solution {
public int searchInsert(int[] nums, int target) {
int left = 0, right = nums.length-1;
//注意循环条件
while (left <= right) {
//求mid
int mid = left + ((right - left ) >> 1);
//查询成功
if (target == nums[mid]) {
return mid;
2021-07-23 15:44:19 +00:00
//右区间
2021-03-18 04:47:47 +00:00
} else if (nums[mid] < target) {
2021-07-23 15:44:19 +00:00
left = mid + 1;
//左区间
2021-03-18 04:47:47 +00:00
} else if (nums[mid] > target) {
right = mid - 1;
}
}
//返回插入位置
return left;
}
}
```
2021-07-23 15:50:29 +00:00
Go Code: