博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode 278. First Bad Version
阅读量:6380 次
发布时间:2019-06-23

本文共 1747 字,大约阅读时间需要 5 分钟。

 

 

 

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:

isBadVersion(3) -> falseisBadVersion(5) -> trueisBadVersion(4) -> true

Here we are 100% sure that the 4th version is the first bad version.

 

 

分析:

 

 

代码库的版本号是从 1 到 n 的整数。某一天,有人提交了错误版本的代码,因此造成自身及之后版本的代码在单元测试中均出错。请找出第一个错误的版本号。

你可以通过 isBadVersion 的接口来判断版本号 version 是否在单元测试中出错。

 

给出 n=5

调用isBadVersion(3),得到false

调用isBadVersion(5),得到true

调用isBadVersion(4),得到true

此时我们可以断定4是第一个错误的版本号

 

 

/** * public class SVNRepo { *     public static boolean isBadVersion(int k); * } * you can use SVNRepo.isBadVersion(k) to judge whether  * the kth code version is bad or not.*/class Solution {    /**     * @param n: An integers.     * @return: An integer which is the first bad version.     */    public int findFirstBadVersion(int n) {        int start = 0, end  = n;        while (start + 1 < end) {            int mid = start + (end - start) / 2;            if (SVNRepo.isBadVersion(mid)) {                end = mid;            } else {                start = mid;            }        }                    if (SVNRepo.isBadVersion(start)) {            return start;        }        return end;    }}

 

转载于:https://www.cnblogs.com/iwangzheng/p/5755043.html

你可能感兴趣的文章
4 在vCenter Server安装View Composer组件
查看>>
SFB 项目经验-24-为持久聊天室-查询或者增加成员
查看>>
Linux下配置Squid基础教程
查看>>
当Cacti遭遇大流量
查看>>
Outlook Anywhere 客户端配置详解
查看>>
《Windows Server 2008 R2系统管理实战》前言与内容提要
查看>>
轻巧的网络流量实时监控工具NTOPNG
查看>>
Access、Sql 获取当前插入的主键ID
查看>>
聚类算法之DBScan(Java实现)
查看>>
为什么要使用AOP?
查看>>
VC :模板类
查看>>
对C++中string类型的总结
查看>>
Oracle发布公共云Public Cloud
查看>>
eclipse高亮显示
查看>>
Shell 操作数据库
查看>>
if lte IE if gte IE 浏览器兼容
查看>>
基于Lumisoft.NET组件和.NET API实现邮件发送功能的对比
查看>>
C#数据库访问技术之DATAREADER对象读取数据
查看>>
各种排序方法
查看>>
编译时程序透彻理解异常并合理使用异常
查看>>