【leetcode】Search for a Range
生活随笔
收集整理的這篇文章主要介紹了
【leetcode】Search for a Range
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目描述:
Given a sorted array of integers, 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].
For example,
Given [5, 7, 7, 8, 8, 10] and target value 8,
return [3, 4].
解題思路:
明顯的簡單二分問題,首先用二分找到一個滿足條件的點,然后向兩邊延展即可
coding=utf-8
class Solution:# @param A, a list of integers# @param target, an integer to be searched# @return a list of length 2, [index1, index2]def searchRange(self, A, target):l = len(A)left = 0 right = l-1index1 = -1index2 = -1pos = -1while left <= right:mid = (left + right) / 2if A[mid] == target:pos = midbreakelif A[mid] > target:right = mid - 1else:left = mid + 1#print posif pos == -1:return [-1,-1]index1 = index2 = poswhile A[index1] == target and index1 > 0 and A[index1-1] == target:index1 -= 1while A[index2] == target and index2 < l-1 and A[index2+1] ==target:index2 += 1return [index1,index2]s = Solution() a = [5, 7, 7, 8, 8, 10] print s.searchRange(a,8) a = [1] print s.searchRange(a,1)轉載于:https://www.cnblogs.com/MrLJC/p/4173643.html
總結
以上是生活随笔為你收集整理的【leetcode】Search for a Range的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 使用Scala实现Java项目的单词计数
- 下一篇: 软件测试-禅道下载及安装-测试人员必会工