Binary search is a highly efficient searching algorithm used when the input is sorted. It works by repeatedly dividing the search range in half, reducing the number of comparisons needed compared to a linear search. Here, we are focusing on finding the middle element that acts as a reference frame to determine whether to go left or right to it as the elements are already sorted This makes it ideal for large datasets, where it achieves a time complexity of O(log N) far faster than O(N) for sequential search.
Example Input/Output:
Input: arr = { 3, 5, 7, 8, 10, 12, 15}, target = 7
Output: 2
Input: arr = { 1, 2, 3, 4, 5, 6, 7, 8} target = 10
Output: -1 ( Because the target is not present in the array)
Key Points:
- Sorted Array: Binary search only works on sorted arrays or lists. Unsorted inputs give undefined results.
- Duplicate Values: If duplicates exist, the returned index depends on the implementation (e.g., it may return the first or any occurrence).
- Efficient: Binary search is efficient for a large dataset if the given input is sorted. Always refer to binary search over sequential search.
Binary Search Algorithm in Java
Below is the Algorithm designed for Binary Search:
- Start
- Take input array and Target
- Initialise start = 0 and end = (array size -1)
- Intialise mid variable
- mid = (start+end)/2
- if array[ mid ] == target then return mid
- if array[ mid ] < target then start = mid+1
- if array[ mid ] > target then end = mid-1
- if start<=end then goto step 5
- return -1 as target not found
- Exit
Now you must be thinking what if the input is not sorted then the results are undefined.
Note: If there are duplicates, there is no guarantee which one will be found.
Importance of Binary Search
- It eliminates half the remaining elements in each step, making it optimal for large datasets.
- It is used in databases, search algorithms, and performance critical applications.
Methods for Java Binary Search
There are three methods in Java to implement Binary Search in Java are mentioned below:
- Iterative Method
- Recursive Method
- Inbuild Method
1. Iterative Method for Binary Search in Java
Example: Binary Search program using iterative method.
Java
// Java implementation of iterative Binary Search
class Geeks
{
static int binarySearch(int a[], int l, int r, int x)
{
while (l <= r) {
int m = (l + r) / 2;
// Index of Element Returned
if (a[m] == x) {
return m;
// If element is smaller than mid, then
// it can only be present in left subarray
// so we decrease our r pointer to mid - 1
} else if (a[m] > x) {
r = m - 1;
// Else the element can only be present
// in right subarray
// so we increase our l pointer to mid + 1
} else {
l = m + 1;
}
}
// No Element Found
return -1;
}
public static void main(String args[])
{
int a[] = { 2, 3, 4, 10, 40 };
int n = a.length;
int x = 10;
int res = binarySearch(a, 0, n - 1, x);
System.out.println("Element to be searched is : "+ x);
if (res == -1)
System.out.println("Element is not present in array");
else
System.out.println("Element is present at index: " + res);
}
}
OutputElement to be searched is : 10
Element is present at index: 3
Tip: Geeks you must be wondering out whether there is any function like lower_bound() or upper_bound() just likely found in C++ STL. so the straight answer is that there was no function only till Java 9, later onwards they were added.
2. Recursive Method for Binary Search
Example: Binary Search program using recursion.
Java
// Java implementation of
// recursive Binary Search
public class Geeks
{
static int binarySearch(int a[], int l, int r, int x)
{
if (r >= l) {
int m = l + (r - l) / 2;
// Returned Index of the Element
if (a[m] == x)
return m;
// If element is smaller than mid, then
// it can only be present in left subarray
if (a[m] > x)
return binarySearch(a, l, m - 1, x);
// Else the element can only be present
// in right subarray
return binarySearch(a, m + 1, r, x);
}
// No Element Found
return -1;
}
// main function
public static void main(String args[])
{
int a[] = { 2, 3, 4, 10, 40 };
int n = a.length;
int x = 10;
int res = binarySearch(a, 0, n - 1, x);
System.out.println("Element to be searched is : "+ x);
if (res == -1)
System.out.println(
"Element is not present in array");
else
System.out.println("Element is present at index: " + res);
}
}
OutputElement to be searched is : 10
Element is present at index: 3
Complexity of the above method
Time Complexity: O(log N)
Space Complexity: O(1), If the recursive call stack is considered then the auxiliary space will be O(log N)
3. In Build Method for Binary Search in Java
Arrays.binarysearch() works for arrays which can be of primitive data type also.
Example: Binary Search program in Java using in-build method Arrays.binarysearch().
Java
// Java Program to demonstrate working of binarySearch()
// Method of Arrays class In a sorted array
import java.util.Arrays;
public class Geeks
{
public static void main(String[] args)
{
int a[] = { 10, 20, 15, 22, 35 };
// Sorting the above array
// using sort() method of Arrays class
Arrays.sort(a);
int x = 22;
int res = Arrays.binarySearch(a, x);
System.out.println("Element to be searched is : "+ x);
if (res >= 0)
System.out.println(x + " found at index = " + res);
else
System.out.println(x + " Not found");
x = 40;
res = Arrays.binarySearch(a, x);
System.out.println("Element to be searched is : "+ x);
if (res >= 0)
System.out.println(x + " found at index = " + res);
else
System.out.println(x + " Not found");
}
}
OutputElement to be searched is : 22
22 found at index = 3
Element to be searched is : 40
40 Not found
Binary Search in Java Collections
Now let us see how Collections.binarySearch() work for LinkedList. So basically as discussed above this method runs in log(n) time for a "random access" list like ArrayList. If the specified list does not implement the RandomAccess interface and is large, this method will do an iterator-based binary search that performs O(n) link traversals and O(log n) element comparisons.
Collections.binarysearch() works for objects Collections like ArrayList and LinkedList.
Example: Binary Search using Collection.binarysearch() on arraylist and linkedlist.
Java
// Java Program to Demonstrate Working of binarySearch()
// method of Collections class
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class Geeks
{
public static void main(String[] args)
{
List<Integer> a = new ArrayList<Integer>();
// Populating the Arraylist
a.add(1);
a.add(2);
a.add(3);
a.add(10);
a.add(20);
int x = 10;
int res = Collections.binarySearch(a, x);
System.out.println("Element to be searched is : "+ x);
if (res >= 0)
System.out.println(x + " found at index = " + res);
else
System.out.println(x + " Not found");
x = 15;
res = Collections.binarySearch(a, x);
if (res >= 0)
System.out.println(x + " found at index = " + res);
else
System.out.println(x + " Not found");
}
}
OutputElement to be searched is : 10
10 found at index = 3
15 Not found
The complexity of the above method:
- Time complexity: O(log N)
- Auxiliary space: O(1)
Similar Reads
Binary Search Algorithm - Iterative and Recursive Implementation Binary Search Algorithm is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half. The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(log N). Binary Search AlgorithmConditions to apply Binary Searc
15 min read
What is Binary Search Algorithm? Binary Search is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half and the correct interval to find is decided based on the searched value and the mid value of the interval. Example of binary searchProperties of Binary Search:Binary search is performed o
1 min read
Time and Space Complexity Analysis of Binary Search Algorithm Time complexity of Binary Search is O(log n), where n is the number of elements in the array. It divides the array in half at each step. Space complexity is O(1) as it uses a constant amount of extra space. Example of Binary Search AlgorithmAspectComplexityTime ComplexityO(log n)Space ComplexityO(1)
3 min read
How to calculate "mid" or Middle Element Index in Binary Search? The most common method to calculate mid or middle element index in Binary Search Algorithm is to find the middle of the highest index and lowest index of the searchable space, using the formula mid = low + \frac{(high - low)}{2} Finding the middle index "mid" in Binary Search AlgorithmIs this method
6 min read
Variants of Binary Search
Variants of Binary SearchBinary search is very easy right? Well, binary search can become complex when element duplication occurs in the sorted list of values. It's not always the "contains or not" we search using Binary Search, but there are 5 variants such as below:1) Contains (True or False)Â 2) Index of first occurrence
15+ min read
Meta Binary Search | One-Sided Binary SearchMeta binary search (also called one-sided binary search by Steven Skiena in The Algorithm Design Manual on page 134) is a modified form of binary search that incrementally constructs the index of the target value in the array. Like normal binary search, meta binary search takes O(log n) time. Meta B
9 min read
The Ubiquitous Binary Search | Set 1We are aware of the binary search algorithm. Binary search is the easiest algorithm to get right. I present some interesting problems that I collected on binary search. There were some requests on binary search. I request you to honor the code, "I sincerely attempt to solve the problem and ensure th
15+ min read
Uniform Binary SearchUniform Binary Search is an optimization of Binary Search algorithm when many searches are made on same array or many arrays of same size. In normal binary search, we do arithmetic operations to find the mid points. Here we precompute mid points and fills them in lookup table. The array look-up gene
7 min read
Randomized Binary Search AlgorithmWe are given a sorted array A[] of n elements. We need to find if x is present in A or not.In binary search we always used middle element, here we will randomly pick one element in given range.In Binary Search we had middle = (start + end)/2 In Randomized binary search we do following Generate a ran
13 min read
Abstraction of Binary SearchWhat is the binary search algorithm? Binary Search Algorithm is used to find a certain value of x for which a certain defined function f(x) needs to be maximized or minimized. It is frequently used to search an element in a sorted sequence by repeatedly dividing the search interval into halves. Begi
7 min read
N-Base modified Binary Search algorithmN-Base modified Binary Search is an algorithm based on number bases that can be used to find an element in a sorted array arr[]. This algorithm is an extension of Bitwise binary search and has a similar running time. Examples: Input: arr[] = {1, 4, 5, 8, 11, 15, 21, 45, 70, 100}, target = 45Output:
10 min read
Implementation of Binary Search in different languages
C Program for Binary SearchIn this article, we will understand the binary search algorithm and how to implement binary search programs in C. We will see both iterative and recursive approaches and how binary search can reduce the time complexity of the search operation as compared to linear search.Table of ContentWhat is Bina
7 min read
C++ Program For Binary SearchBinary Search is a popular searching algorithm which is used for finding the position of any given element in a sorted array. It is a type of interval searching algorithm that keep dividing the number of elements to be search into half by considering only the part of the array where there is the pro
5 min read
C Program for Binary SearchIn this article, we will understand the binary search algorithm and how to implement binary search programs in C. We will see both iterative and recursive approaches and how binary search can reduce the time complexity of the search operation as compared to linear search.Table of ContentWhat is Bina
7 min read
Binary Search functions in C++ STL (binary_search, lower_bound and upper_bound)In C++, STL provide various functions like std::binary_search(), std::lower_bound(), and std::upper_bound() which uses the the binary search algorithm for different purposes. These function will only work on the sorted data.There are the 3 binary search function in C++ STL:Table of Contentbinary_sea
3 min read
Binary Search in JavaBinary search is a highly efficient searching algorithm used when the input is sorted. It works by repeatedly dividing the search range in half, reducing the number of comparisons needed compared to a linear search. Here, we are focusing on finding the middle element that acts as a reference frame t
6 min read
Binary Search (Recursive and Iterative) - PythonBinary Search Algorithm is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half. The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(log N). Below is the step-by-step algorithm for Binary Search:D
6 min read
Binary Search In JavaScriptBinary Search is a searching technique that works on the Divide and Conquer approach. It is used to search for any element in a sorted array. Compared with linear, binary search is much faster with a Time Complexity of O(logN), whereas linear search works in O(N) time complexityExamples: Input : arr
3 min read
Binary Search using pthreadBinary search is a popular method of searching in a sorted array or list. It simply divides the list into two halves and discards the half which has zero probability of having the key. On dividing, we check the midpoint for the key and use the lower half if the key is less than the midpoint and the
8 min read
Comparison with other Searching
Binary Search Intuition and Predicate Functions The binary search algorithm is used in many coding problems, and it is usually not very obvious at first sight. However, there is certainly an intuition and specific conditions that may hint at using binary search. In this article, we try to develop an intuition for binary search. Introduction to Bi
12 min read
Can Binary Search be applied in an Unsorted Array? Binary Search is a search algorithm that is specifically designed for searching in sorted data structures. This searching algorithm is much more efficient than Linear Search as they repeatedly target the center of the search structure and divide the search space in half. It has logarithmic time comp
9 min read
Find a String in given Array of Strings using Binary Search Given a sorted array of Strings arr and a string x, The task is to find the index of x in the array using the Binary Search algorithm. If x is not present, return -1.Examples:Input: arr[] = {"contribute", "geeks", "ide", "practice"}, x = "ide"Output: 2Explanation: The String x is present at index 2.
6 min read