• First Bad Version——LeetCode


    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.

    题目大意:n个版本,如果某个版本是坏的,后面都是坏的,找出第一个坏的。

    解题思路:二分查找。

    public class Solution extends VersionControl {
        public int firstBadVersion(int n) {
            if (isBadVersion(1)){
                return 1;
            }
            int lo = 0;
            int hi = n - 1;
            while (lo <= hi) {
                int mid = (lo + hi) >>> 1;
                if (!isBadVersion(mid + 1) && isBadVersion(mid + 2)) {
                    return mid + 2;
                }
                if (mid > 0 && !isBadVersion(mid) && isBadVersion(mid + 1)) {
                    return mid + 1;
                } else if (isBadVersion(mid + 1)) {
                    hi = mid - 1;
                } else if (!isBadVersion(mid + 1)) {
                    lo = mid + 1;
                }
            }
            return -1;
        }
    }
  • 相关阅读:
    あ 段
    需要注意学习.net过程的要点
    最近因为textview高度问题疯了疯了疯了
    判断是否可以使用麦克风
    tabbar加小红点
    textView富文本点击事件
    通过某一个符号截取字符串
    局部富文本
    判断是否包含某个字符串
    UIProgressView 圆角
  • 原文地址:https://www.cnblogs.com/aboutblank/p/4801270.html
Copyright © 2020-2023  润新知