LeetCode 278. 第一个错误的版本 First Bad Version
Table of Contents
一、中文版
你是产品经理,目前正在带领一个团队开发新的产品。不幸的是,你的产品的最新版本没有通过质量检测。由于每个版本都是基于之前的版本开发的,所以错误的版本之后的所有版本都是错的。
假设你有 n 个版本 [1, 2, ..., n],你想找出导致之后所有版本出错的第一个错误的版本。
你可以通过调用 bool isBadVersion(version) 接口来判断版本号 version 是否在单元测试中出错。实现一个函数来查找第一个错误的版本。你应该尽量减少对调用 API 的次数。
示例:
给定 n = 5,并且 version = 4 是第一个错误的版本。
调用 isBadVersion(3) -> false
调用 isBadVersion(5) -> true
调用 isBadVersion(4) -> true
所以,4 是第一个错误的版本。
二、英文版
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. Example: Given n = 5, and version = 4 is the first bad version. call isBadVersion(3) -> false call isBadVersion(5) -> true call isBadVersion(4) -> true Then 4 is the first bad version. 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/first-bad-version 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
三、My answer
# The isBadVersion API is already defined for you. # @param version, an integer # @return a bool # def isBadVersion(version): class Solution: def firstBadVersion(self, n): """ :type n: int :rtype: int """ start = 1 end = n while start + 1 < end: mid = int(start + (end - start) / 2) # 如果 mid 是错误版本,则往前找,否则往后找 if isBadVersion(mid): end = mid else: start = mid if isBadVersion(start): return start return end
四、解题报告
二分法。
每次判断 mid 是否是错误版本,如果是,则往前找第一个错误版本出现的位置;否则往后查找。
跳出 while 循环的条件是 start 与 end 相邻,所以需单独判断 start 和 end 对应的节点是否是错误版本。
因为要找到第一个错误版本,且 start 在 end 前面所以先判断 start。
如果 start 不是错误版本,直接返回 end 即可(因为肯定有一个错误版本)。