-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcode_1.cpp
51 lines (44 loc) · 1.03 KB
/
code_1.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
//
// code_1.cpp
// Algorithm
//
// Created by Mohd Shoaib Rayeen on 23/11/18.
// Copyright © 2018 Shoaib Rayeen. All rights reserved.
//
#include <iostream>
using namespace std;
int firstZero(int arr[], int low, int high) {
if (high >= low) {
int mid = low + (high - low)/2;
if (( mid == 0 || arr[mid-1] == 1) && arr[mid] == 0) {
return mid;
}
if (arr[mid] == 1) {
return firstZero(arr, (mid + 1), high);
}
else {
return firstZero(arr, low, (mid -1));
}
}
return -1;
}
int countZeroes(int arr[], int n) {
int first = firstZero(arr, 0, n-1);
if (first == -1) {
return 0;
}
return (n - first);
}
int main() {
int n;
cout << "\nEnter Size\t:\t";
cin >> n;
int *arr = new int[n];
cout << "\nEnter Array Elements\n";
for ( int i = 0; i < n; i++ ) {
cin >> arr[i];
}
cout << "\nNumber of Zeros\t:\t" << countZeroes(arr , n) << endl;
delete []arr;
return 0;
}