278. First Bad Version

Posted Premiumlab

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了278. First Bad Version相关的知识,希望对你有一定的参考价值。

https://leetcode.com/problems/first-bad-version/#/description

 

You are a product manager and currently leading a team to develop a new product. Unfortunately, the latest version of your product fails the quality check. Since each version is developed based on the previous version, all the versions after a bad version are also bad.

Suppose you have n versions [1, 2, ..., n] and you want to find out the first bad one, which causes all the following ones to be bad.

You are given an API bool isBadVersion(version) which will return whether version is bad. Implement a function to find the first bad version. You should minimize the number of calls to the API.

 

Sol 1:

Binary search

 

class Solution(object):
    def firstBadVersion(self, n):
        """
        :type n: int
        :rtype: int
        """
        
        
        if isBadVersion(1):
            return 1
        l = 1
        r = n
        while l < r - 1:
            mid = (l+r)/2
            if isBadVersion(mid):
                r = mid
            else:
                l = mid
        return r

 

Sol 2:

Recursion

 

class Solution(object):
    def rec(self,l,r):
        if(l>r):
            return 0
        else:
            mid=(l+r)/2
            if(isBadVersion(mid)):
                if(l==r):
                    return l
                else:
                    return self.rec(l,mid)
            else:
                return self.rec(mid+1,r)
            
    def firstBadVersion(self, n):
        """
        :type n: int
        :rtype: int
        """
        ans=self.rec(1,n)
        return ans

 

 

 

以上是关于278. First Bad Version的主要内容,如果未能解决你的问题,请参考以下文章

278. First Bad Version

LC.278. First Bad Version

278. First Bad Version

278. First Bad Version

278. First Bad Version

278. First Bad Version