问题

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3985 访问。

你是产品经理,目前正在带领一个团队开发新的产品。不幸的是,你的产品的最新版本没有通过质量检测。由于每个版本都是基于之前的版本开发的,所以错误的版本之后的所有版本都是错的。

假设你有 n 个版本 [1, 2, ..., n],你想找出导致之后所有版本出错的第一个错误的版本。

你可以通过调用 bool isBadVersion(version) 接口来判断版本号 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.


示例

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3985 访问。

public class Program {

    public static void Main(string[] args) {
var n = 5;
var res = FirstBadVersion(n);
Console.WriteLine(res); n = 5;
res = FirstBadVersion2(n);
Console.WriteLine(res); Console.ReadKey();
} private static bool IsBadVersion(int version) {
return version >= 4;
} private static int FirstBadVersion(int n) {
//LeetCode超时未AC
//暴力求解
for (var i = 0; i < n; i++) {
if (IsBadVersion(i + 1)) return i + 1;
}
return -1;
} private static int FirstBadVersion2(int n) {
//二分求解
var low = 1;
var high = n;
while (low < high) {
//取中间索引,并不是每次取半,而是使用 (high - low) / 2 防止过界
var mid = low + (high - low) / 2;
//如果是错误的版本,直接将右指针指向 mid
//因为要找的点肯定在它左侧
if (IsBadVersion(mid)) high = mid;
//如果不是错误的版本,将左指针指向 mid + 1
//因为要找的点肯定在它右侧
else low = mid + 1;
}
return low;
} }

以上给出2种算法实现,以下是这个案例的输出结果:

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3985 访问。

4
4

分析:

显而易见,FirstBadVersion  的时间复杂度为:C#LeetCode刷题之#278-第一个错误的版本(First Bad Version)-LMLPHP  ,FirstBadVersion2 的时间复杂度为: C#LeetCode刷题之#278-第一个错误的版本(First Bad Version)-LMLPHP 。

05-28 13:04