Python描述 LeetCode 35. 搜索插入位置

Posted 亓官劼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python描述 LeetCode 35. 搜索插入位置相关的知识,希望对你有一定的参考价值。

Python描述 LeetCode 35. 搜索插入位置

  大家好,我是亓官劼(qí guān jié ),在【亓官劼】公众号、CSDN、GitHub、B站等平台分享一些技术博文,主要包括前端开发、python后端开发、小程序开发、数据结构与算法、docker、Linux常用运维、NLP等相关技术博文,时光荏苒,未来可期,加油~

  如果喜欢博主的文章可以关注博主的个人公众号【亓官劼】(qí guān jié),里面的文章更全更新更快。如果有需要找博主的话可以在公众号后台留言,我会尽快回复消息.


本文原创为【亓官劼】(qí guān jié ),请大家支持原创,部分平台一直在恶意盗取博主的文章!!! 全部文章请关注微信公众号【亓官劼】。

题目

给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。

请必须使用时间复杂度为 O(log n) 的算法。

示例 1:

输入: nums = [1,3,5,6], target = 5
输出: 2

示例 2:

输入: nums = [1,3,5,6], target = 2
输出: 1

示例 3:

输入: nums = [1,3,5,6], target = 7
输出: 4

提示:

  • 1 <= nums.length <= 104
  • -104 <= nums[i] <= 104
  • nums无重复元素升序 排列数组
  • -104 <= target <= 104

Python描述

右边界二分查找

class Solution:
    def searchInsert(self, nums: List[int], target: int) -> int:
        n = len(nums)
        l,r = 0,n-1
        while l < r:
            mid = l + r + 1>> 1
            if nums[mid] < target:
                l = mid
            else:
                r = mid - 1
        if nums[l] == target:
            return l
        return l if nums[l] > target else l + 1

以上是关于Python描述 LeetCode 35. 搜索插入位置的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode 35.搜索插入位置 By Python

Leetcode刷题Python35. 搜索插入位置

Leetcode -- 搜索插入位置(35)(二分查找)

Leetcode35 Search Insert Position 解题思路(python)

LeetCode第3天 - 704. 二分查找 | 35. 搜索插入位置

[LeetCode] 35. 搜索插入位置