Skip to content

Instantly share code, notes, and snippets.

@beeTechMantra
Created April 7, 2019 09:35
Show Gist options
  • Select an option

  • Save beeTechMantra/958506ce7273efe9b359c1dfd7a2dce7 to your computer and use it in GitHub Desktop.

Select an option

Save beeTechMantra/958506ce7273efe9b359c1dfd7a2dce7 to your computer and use it in GitHub Desktop.
Binary Search
class BinarySearch
{
public static void main(String args[])
{
int c, first, last, middle, n, search, array[];
Scanner in = new Scanner(System.in);
System.out.println("Enter number of elements");
n = in.nextInt();
array = new int[n];
System.out.println("Enter " + n + " integers");
for (c = 0; c < n; c++)
array[c] = in.nextInt();
System.out.println("Enter value to find");
search = in.nextInt();
first = 0;
last = n - 1;
middle = (first + last)/2;
while( first <= last )
{
if ( array[middle] < search )
first = middle + 1;
else if ( array[middle] == search )
{
System.out.println(search + " found at location " + (middle + 1) + ".");
break;
}
else
last = middle - 1;
middle = (first + last)/2;
}
if ( first > last )
System.out.println(search + " is not present in the list.\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment