随笔 - 0,  文章 - 900,  评论 - 0,  阅读 - 33万

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

 

 

这道题比较简单,就是二分查找。思路就是每次取中间,如果等于目标即返回,否则根据大小关系切去一半。因此算法复杂度是O(logn),空间复杂度O(1)。代码如下: 

 

  1. public int searchInsert(int[] A, int target) {  
  2.     if(A == null || A.length == 0)  
  3.     {  
  4.         return 0;  
  5.     }  
  6.     int l = 0;  
  7.     int r = A.length-1;  
  8.     while(l<=r)  
  9.     {  
  10.         int mid = (l+r)/2;  
  11.         if(A[mid]==target)  
  12.             return mid;  
  13.         if(A[mid]<target)  
  14.             l = mid+1;  
  15.         else  
  16.             r = mid-1;  
  17.     }  
  18.     return l;  
  19. }  

注意以上实现方式有一个好处,就是当循环结束时,如果没有找到目标元素,那么l一定停在恰好比目标大的index上,r一定停在恰好比目标小的index上,所以个人比较推荐这种实现方式。
二分查找是一个非常经典的方法,不过一般在面试中很少直接考二分查找,会考一些变体,例如Search in Rotated Sorted ArraySearch for a RangeSearch a 2D Matrix,思路其实是类似的,稍微变体一下即可,有兴趣可以练习一下哈。

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Solution {
public:
    int searchInsert(int A[], int n, int target) {
        int start = 0, end = n - 1;
        while (start <= end) {
            int mid = start + (end - start) / 2;
            if (A[mid] < target) {
                start = mid + 1;
            }
            else {
                end = mid - 1;
            }
        }
         
        return start;     
    }
};

 

posted on   风云逸  阅读(727)  评论(0编辑  收藏  举报
(评论功能已被禁用)
编辑推荐:
· 对象命名为何需要避免'-er'和'-or'后缀
· SQL Server如何跟踪自动统计信息更新?
· AI与.NET技术实操系列:使用Catalyst进行自然语言处理
· 分享一个我遇到过的“量子力学”级别的BUG。
· Linux系列:如何调试 malloc 的底层源码
阅读排行:
· C# 中比较实用的关键字,基础高频面试题!
· .NET 10 Preview 2 增强了 Blazor 和.NET MAUI
· Ollama系列05:Ollama API 使用指南
· 为什么AI教师难以实现
· 如何让低于1B参数的小型语言模型实现 100% 的准确率
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示