-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary_search.java
32 lines (31 loc) · 1.06 KB
/
binary_search.java
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
import java.util.Scanner;
class binary_search {
public static void main(String[] args) {
int arr[] = {2,4,5,7,6,9,12,15,18};
int first, mid, last;
System.out.println("Given array element:");
for (int i=0; i<arr.length ;i++ ) {
System.out.print(arr[i]+" ");
}
System.out.println("\n====================");
Scanner scn = new Scanner(System.in);
System.out.print("Enter the element to search:");
int search = scn.nextInt(); first = 0;
last = arr.length-1; mid = (first+last)/2;
while (first <= last){
if (arr[mid] < search) {
first = mid + 1;
}
else if (arr[mid] == search) {
System.out.println(search+" is found at location: "+ (mid+1)); break;
}
else {
last = mid - 1;
}
mid = (first + last) /2;
}
if (first > last) {
System.out.println("Element is not found");
}
}
}