zoukankan      html  css  js  c++  java
  • 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;
        }
    }
  • 相关阅读:
    创业公司新品如何寻求科技媒体的报道?
    DevStore分享:详析消费者十大心理学
    DevStore教你如何玩转饥饿营销?
    iClap分享:如何优雅的在 APP 中实现测试?
    java内部类
    Tostring 的用法
    Java 集合详解
    Java集合浅析
    异常--解析
    is-a 、have-a、和 like-a的区别
  • 原文地址:https://www.cnblogs.com/aboutblank/p/4801270.html
Copyright © 2011-2022 走看看