278. 第一个错误的版本

问题

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

你可以通过调用 bool isBadVersion(version) 接口来判断版本号 version 是否在单元测试中出错。你应该尽量减少对调用 API 的次数。
返回true是错误的版本

例子

278. 第一个错误的版本_第1张图片

思路

  • 方法1

  • 方法2

代码

//方法1
/* The isBadVersion API is defined in the parent class VersionControl.
      boolean isBadVersion(int version); */

public class Solution extends VersionControl {
    public int firstBadVersion(int n) {
        int a=1,b=n;
        while(a<b) {
            int m = a+(b-a)/2;
            //true为出错
            if(isBadVersion(m)==true) b=m;
            else a=m+1;
        }
        return a;
        
    }
  
//方法2

你可能感兴趣的:(leetcode,easy)