problem
solution
1 | // The API isBadVersion is defined for you. |
- lower bound
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15// The API isBadVersion is defined for you.
// bool isBadVersion(int version);
class Solution {
public:
int firstBadVersion(int n) {
int l =1, r = n;
while(l<r){
int mid = l + (r-l)/2;
if(isBadVersion(mid) ) r = mid;
else l = mid+1;
}
return l;
}
};analysis
- time complexity
O(logn)
- space complexity
O(1)