-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnumberOfOccurrencesOfX.cpp
68 lines (53 loc) · 1.48 KB
/
numberOfOccurrencesOfX.cpp
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
#include<bits/stdc++.h>
using namespace std;
/*
Can be converted to a single call by passing a bool flag but this is more readable
*/
int binarySearchForStartIndex(vector<int> &a, int x) {
int start = 0, end = a.size() - 1, mid = 0;
int result = -1;
while(start <= end) {
int mid = start + (end - start) / 2;
if(x == a[mid]) {
result = mid;
end = mid - 1;
}
else if(x < a[mid])
end = mid - 1;
else
start = mid + 1;
}
return result;
}
int binarySearchForEndIndex(vector<int> &a, int x) {
int start = 0, end = a.size() - 1, mid = 0;
int result = -1;
while(start <= end) {
int mid = start + (end - start) / 2;
if(x == a[mid]) {
result = mid;
start = mid + 1;
}
else if(x < a[mid])
end = mid - 1;
else
start = mid + 1;
}
return result;
}
//find start and end of same number using binarySearch and then subtract the distance
int findOccurrencesOfX(vector<int> &a, int x) {
int start, end;
start = binarySearchForStartIndex(a, x);
if(start == -1) //not present
return -1;
end = binarySearchForEndIndex(a, x);
return end - start + 1;
}
int main() {
vector<int> A = {1, 1, 2, 2, 2, 2, 3};
cout<<findOccurrencesOfX(A, 2)<<"\n";
vector<int> B = {1, 1, 2, 2, 2, 2, 3};
cout<<findOccurrencesOfX(B, 4)<<"\n";
return 0;
}