-
Notifications
You must be signed in to change notification settings - Fork 0
/
278- First Bad Version
94 lines (77 loc) · 1.89 KB
/
278- First Bad Version
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
//Problem solution in Python.
class Solution:
def firstBadVersion(self, n):
"""
:type n: int
:rtype: int
"""
first = 0
last = n
while first <= last:
mid = (first+last)//2
if isBadVersion(mid):
if not isBadVersion(mid-1):
return mid
else:
last = mid - 1
else:
first = mid + 1
return -1
//Problem solution in Java.
public class Solution extends VersionControl {
public int firstBadVersion(int n) {
if(n==1)
return 1;
int low = 1;
int high = n;
while(low<=high){
int mid = low + (high-low)/2;
if(isBadVersion(mid)){
// move towards good version
high = mid-1;
}else{
// if good version
// move towards more recent good version
low = mid+1;
}
}
return low;
}
}
//Problem solution in C++.
class Solution {
public:
int find(int start, int end) {
if(start>end) {
return -1;
}
int mid = start+(end-start)/2;
bool isBad = isBadVersion(mid);
if(isBad && (mid == 0 || !isBadVersion(mid-1))) {
return mid;
}
if(isBad) {
return find(start, mid-1);
} else {
return find(mid+1, end);
}
}
int firstBadVersion(int n) {
return find(1, n);
}
};
//Problem solution in C.
int firstBadVersion(int n) {
int left = 1;
int right = n;
while(left<right){
int mid = left + (right-left)/2;
if(isBadVersion(mid)){
right = mid;
}
else{
left = mid + 1;
}
}
return left;
}