Table of Content

How to search element in Byte Array using Binary Search in Java?


Declaration :

Explanation :

Purpose The java.util.Arrays.binarySearch(byte[] a byte key) method searches the specified array of bytes for the specified value using the binary search algorithm.The array must be sorted before making this call.If it is not sorted the results are undefined.
Parameters a ===> This is the array to be searched.
key ===> This is the value to be searched for.
Return Value This method returns index of the search key if it is contained in the array else it returns (-(insertion point) - 1). The insertion point is the point at which the key would be inserted into the array: the index of the first element greater than the key or a.length if all elements in the array are less than the specified key.
Exception NA

Java Program : Example

Below example will explain java.util.Arrays.binarySearch() method.

Output of Program :