zoukankan      html  css  js  c++  java
  • LeetCode——First Bad Version

    Description:

    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.

    二分法

    /* The isBadVersion API is defined in the parent class VersionControl.
          boolean isBadVersion(int version); */
          
    
    public class Solution extends VersionControl {
        public int firstBadVersion(int n) {
            
            //0 0 0 0 0 1 1 1 1 1
            int start=1, end=n;
            int mid;
            while(start + 1< end) {
                mid=start + (end - start)/2;
                //写成mid = (start+end) / 2,会造成整数越界,变成死循环。
                //写成上边这样就能防止越界问题。
                if(isBadVersion(mid)) {
                    end = mid;
                }
                else {
                    start = mid;
                }
            }
            if(isBadVersion(start)) {
                return start;
            }
            else {
                return end;
            }
            
        }
    }
  • 相关阅读:
    Linux目录
    find命令
    107. Binary Tree Level Order Traversal II
    grep命令
    110. Balanced Binary Tree
    111. Minimum Depth of Binary Tree
    什么是泛型
    自动装箱与拆箱
    HDU 3001 Travelling (状压DP + BFS)
    POJ 3411 Paid Roads (状态压缩+BFS)
  • 原文地址:https://www.cnblogs.com/wxisme/p/4841438.html
Copyright © 2011-2022 走看看