Skip to content

Commit 564f256

Browse files
committed
Updated FindFloor
1 parent 65d9e93 commit 564f256

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Searching/FindFloor.java

+5-6
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,23 @@ static int find(long[] arr,int l,int h,long element){
99
if (l>h){
1010
return -1;
1111
}
12+
if (arr[h] <= element){
13+
return h;
14+
}
1215
int mid = l + (h-l)/2;
1316
if (arr[mid] == element){
1417
return mid;
1518
}
1619
if (mid > 0 && arr[mid-1] <= element && arr[mid] > element ){
1720
return mid-1;
1821
}
19-
if (arr[mid] > element){
22+
if (element < arr[mid]){
2023
return find(arr,l,mid-1,element);
2124
}
22-
if (arr[mid] < element){
23-
return find(arr,mid+1,h,element);
24-
}
25-
return -1;
25+
return find(arr,mid+1,h,element);
2626
}
2727
public static void main(String[] args) {
2828
long[] arr = {1, 2, 8, 10, 11, 12, 19};
29-
3029
long[] testCase = {0,1,2,10,19,13,8};
3130

3231
for (long l : testCase) {

0 commit comments

Comments
 (0)