LeetCode 278 First Bad Version(第一个坏版本)(二分法)(*)

翻译

你是一个产品经理,目前正在带领团队去开发一个新产品。

不幸的是,产品的上一个版本没有通过质量检测。

因为每个版本都是建立在前一个版本基础上开发的,所以坏版本之后的版本也都是坏的。

假设你有n个版本[1,2,...,n],并且你想找出造成后面所有版本都变坏的第一个坏版本。

给你一个API——bool isBadVersion(version),它能够确定一个版本是否是坏的。

实现一个函数去找出第一个坏版本。

你应该尽可能少地去调用这个API。

原文

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.

分析

其实题目说了这么多,解出来只需要用二分法就够了,只不过中间挺容易出错的。

// Forward declaration of isBadVersion API.
bool isBadVersion(int version);

class Solution {
public:
    int firstBadVersion(int n) {
        int l = 0, r = n;
        while (l < r) {
            int mid = l + (r - l) / 2;
            if (isBadVersion(mid))
                r = mid;
            else
                l = mid + 1;
        }
        return l;
    }
};

今天写的第六道题了,好累哎……

时间: 2024-10-13 15:57:32

LeetCode 278 First Bad Version(第一个坏版本)(二分法)(*)的相关文章

LeetCode:First Bad Version - 第一个坏版本

1.题目名称 First Bad Version(第一个坏版本) 2.题目地址 https://leetcode.com/problems/first-bad-version/ 3.题目内容 英文: 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 c

LeetCode 278 First Bad Version

LeetCode  278 First Bad Version // Forward declaration of isBadVersion API. bool isBadVersion(int version); int firstBadVersion(int n) { int start=1, end=n; while(start < end) { int mid=start+(end-start)/2; if(isBadVersion(mid)) end=mid; else start=m

[Lintcode]74. First Bad Version/[Leetcode]278. First Bad Version

[Lintcode]74. First Bad Version [Leetcode]278. First Bad Version 本题难度: [Lintcode]Medium/[Leetcode] Topic: Binary Search Description 我的代码 for Leetcode(在Lintcode中因为isBadVersion调用太多次无法通过) # The isBadVersion API is already defined for you. # @param versi

Leetcode 278 First Bad Version 二分查找

题意:找到第一个出问题的版本 二分查找,注意 mid = l + (r - l + 1) / 2;因为整数会溢出 1 // Forward declaration of isBadVersion API. 2 bool isBadVersion(int version); 3 4 class Solution { 5 public: 6 int firstBadVersion(int n) { 7 int l = 1, r = n , ans ; 8 while(l <= r){ 9 int m

LeetCode OJ:Compare Version Numbers(比较版本字符串)

Compare two version numbers version1 and version2.If version1 > version2 return 1, if version1 < version2 return -1, otherwise return 0. You may assume that the version strings are non-empty and contain only digits and the . character.The . characte

前端与算法 leetcode 387. 字符串中的第一个唯一字符

目录 # 前端与算法 leetcode 387. 字符串中的第一个唯一字符 题目描述 概要 提示 解析 解法一:双循环 解法二:Set法单循环 算法 传入测试用例的运行结果 执行结果 GitHub仓库 查看更多 # 前端与算法 leetcode 387. 字符串中的第一个唯一字符 题目描述 给定一个字符串,找到它的第一个不重复的字符,并返回它的索引.如果不存在,则返回 -1. 案例: s = "leetcode" 返回 0. s = "loveleetcode",

愚工钻孔机如何做到世界第一:227版本超多改进(2)

接上文<愚工钻孔机如何做到世界第一:不断改进篇 自动镜像(1)>:ref://6040 1.不连清洗机的钻孔机,防止掉落玻璃 如果不链接清洗机,工人忘记在下片区忘记把玻璃抬下来,结果机器一运行,导致玻璃从出片段砸下.227版本后,可加装一个行程开关,如上图所示:红色圆圈部分为行程开关,建议伸出长度可调,这样方便遇到大玻璃可以打孔. 注意点: 1).从电控箱链接3D-到行程开关的1#端子,2#端子连接线到1#PLC(AFPX-38AT)的X17 2).软件进行设置:手动->系统设置->

Android SDK Version 对应的 rom 版本

Platform Version API Level VERSION_CODE Notes Android 4.4 19 KITKAT Platform Highlights Android 4.3 18 JELLY_BEAN_MR2 Platform Highlights Android 4.2, 4.2.2 17 JELLY_BEAN_MR1 Platform Highlights Android 4.1, 4.1.1 16 JELLY_BEAN Platform Highlights An

leetcode 278 第一个错误的版本 (First Bad Version)

很简单的二分查找. 弱智一开始直接复制mid=(1+n)/2 结果TLE,愣是没发现错误. 以为方法错了. 然后复制别人代码,int溢出. // Forward declaration of isBadVersion API. bool isBadVersion(int version); class Solution { public: int firstBadVersion(int n) { if(isBadVersion(1)){ return 1; } int bg=1; int mid