博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode34. Find First and Last Position of Element in Sorted Array (思路及python解法)
阅读量:2241 次
发布时间:2019-05-09

本文共 924 字,大约阅读时间需要 3 分钟。

Given an array of integers nums sorted in ascending order, find the starting and ending position of a given target value.

Your algorithm's runtime complexity must be in the order of O(log n).

If the target is not found in the array, return [-1, -1].

Example 1:

Input: nums = [5,7,7,8,8,10], target = 8Output: [3,4]

Example 2:

Input: nums = [5,7,7,8,8,10], target = 6Output: [-1,-1]

查找目标数字在列表中最开始的位置和最后的位置,如果不存在则返回-1,很容易理解。

直接用index去做很容易。

class Solution:    def searchRange(self, nums: List[int], target: int) -> List[int]:        try:            a=nums.index(target)            b=len(nums)-1-nums[::-1].index(target)            return [a,b]        except:            return [-1,-1]

或者用二分查找做这道题。注意二分查找的写法。最后比较的是nums[l]和target。

class Solution:    def searchRange(self, nums: List[int], target: int) -> List[int]:        length=len(nums)        if length==0:return [-1,-1]        l, r= 0, length-1        a,b=0,0        while l

 

转载地址:http://icrbb.baihongyu.com/

你可能感兴趣的文章
【LEETCODE】204-Count Primes
查看>>
【LEETCODE】228-Summary Ranges
查看>>
【LEETCODE】27-Remove Element
查看>>
【LEETCODE】66-Plus One
查看>>
【LEETCODE】26-Remove Duplicates from Sorted Array
查看>>
【LEETCODE】118-Pascal's Triangle
查看>>
【LEETCODE】119-Pascal's Triangle II
查看>>
word2vec 模型思想和代码实现
查看>>
怎样做情感分析
查看>>
用深度神经网络处理NER命名实体识别问题
查看>>
用 RNN 训练语言模型生成文本
查看>>
RNN与机器翻译
查看>>
用 Recursive Neural Networks 得到分析树
查看>>
RNN的高级应用
查看>>
TensorFlow-7-TensorBoard Embedding可视化
查看>>
轻松看懂机器学习十大常用算法
查看>>
一个框架解决几乎所有机器学习问题
查看>>
特征工程怎么做
查看>>
机器学习算法应用中常用技巧-1
查看>>
决策树的python实现
查看>>