[LeetCode] First Bad Version - 二分查找

举报
eastmount 发表于 2021/07/31 18:42:02 2021/07/31
【摘要】 这是一道关于二分查找的LeetCode题目,希望对您有所帮助。

题目概述:
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
boolisBadVersion(version) which will return whetherversion is bad. Implement a function to find the first bad version. You should minimize the number of calls to the API.

题目解析:
数组[1,2..n]中存在一个bad版本时,后面的版本都是bad,通过调用函数isBadVersion可以判断是否是bad版本。例如:[1,2,3]中2是bad版本,则调用isBadVersion(2)=true、isBadVersion(1)=false、isBadVersion(3)=true,结果返回2第一个导致bad的版本。
解决方法:二分查找
需注意middle=left+(right-left)/2、二分查找的下标移动和返回值left。

我的代码:

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

/*
 * 二分查找 关键步骤:
 * 1.middle定位 
 * 2.大于middle查找右部分 left=middle+1
 * 3.小于middle查找左部分 right=middle-1
 */
int firstBadVersion(int n) {
    int middle;
    int left;
    int right;
    
    left=1;
    right=n;
    while(left<=right) {
        middle = left+(right-left)/2; //重点&能防止越界 例1+(5-1)/2=3
        if(isBadVersion(middle)==true) {
            right = middle-1;
        }
        else {
            left = middle+1;
        }
    }
    return left;    
}
2015年的文章,希望您喜欢。
原文地址:https://blog.csdn.net/Eastmount/article/details/48305831

(By:Eastmount 2021-7-31 夜于武汉)
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。