第一個出錯的版本 First Bad Version

問題:spa

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.code

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.it

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.io

解決:function

① 折半查找便可。class

/* The isBadVersion API is defined in the parent class VersionControl.
      boolean isBadVersion(int version); */
public class Solution extends VersionControl { //49ms
    public int firstBadVersion(int n) {
        int left = 1;
        int right = n;
        while(left <= right){
            int mid = (right - left) / 2 + left;
            if(isBadVersion(mid) && ! isBadVersion(mid - 1)){
                return mid;
            }else if(isBadVersion(mid) && isBadVersion(mid - 1)){
                right = mid - 1;
            }else if(! isBadVersion(mid)){
                left = mid + 1;
            }
        }
        return left;
    }
}test

② 以前想得太複雜了。sed

public class Solution extends VersionControl {
    public int firstBadVersion(int n) {
        if (n == 0)   return -1;
        int start = 1, end = n;
        while (start < end) {
            int mid = start + (end - start) / 2;
            if ( ! isBadVersion(mid))
                start = mid + 1;
            else end = mid;
        }
            return start; //finally start=end
    }
}im

相關文章
相關標籤/搜索