278. First bad version

Source: Internet
Author: User

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 havenVersions[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 APIbool isBadVersion(version)Which will return whetherversionIs bad. Implement a function to find the first bad version. You shoshould Minimize the number of cballs to the API.

Example:

Given n = 5, and version = 4 is the first bad version.call isBadVersion(3) -> falsecall isBadVersion(5) -> truecall isBadVersion(4) -> trueThen 4 is the first bad version. 
 

Approach #1:

// Forward declaration of isBadVersion API.bool isBadVersion(int version);class Solution {public:    int firstBadVersion(int n) {        int l = 1;        int r = n;        int m;        while (l <= r) {            m = l + (r - l) / 2;            if (isBadVersion(m)) r = m - 1;            else l = m + 1;        }        return l;    }};

Runtime: 0 MS, faster than 100.00% of C ++ online submissions for first bad version.

 

Analysis:

1. Using

 

278. First bad version

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.