Created
February 26, 2021 08:41
-
-
Save lifeparticle/d80e83621a01f705ab73ddd1b9c627cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static int binarySearch (int values[], int target) { | |
int left = 0; | |
int mid = 0; | |
int right = values.length - 1; | |
while (left <= right) { | |
mid = (left + right) / 2; | |
if (target == values[mid]) | |
return mid; | |
else if(target > values[mid]) | |
left = mid + 1; | |
else | |
right = mid - 1; | |
} | |
return -1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment