Skip to content

Commit c17d990

Browse files
first Occurence
1 parent 4760683 commit c17d990

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
#include <iostream>
2+
using namespace std;
3+
4+
void findFirstOccurence(int arr[], int n, int target, int &index)
5+
{
6+
int s = 0;
7+
int e = n - 1;
8+
9+
while (s <= e)
10+
{
11+
int mid = s + (e - s) / 2;
12+
13+
if (arr[mid] == target)
14+
{
15+
index = mid;
16+
e = mid - 1;
17+
}
18+
else if (arr[mid] < target)
19+
{
20+
s = mid + 1;
21+
}
22+
else if (arr[mid] > target)
23+
{
24+
e = mid - 1;
25+
}
26+
}
27+
}
28+
29+
int main()
30+
{
31+
int arr[] = {1, 2, 3,3, 5, 6, 7, 9};
32+
int n = 8;
33+
int target = 1;
34+
int index = -1;
35+
36+
findFirstOccurence(arr, n, target, index);
37+
cout << "the index is : " << index;
38+
}
43.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)