How to use Array.BinarySearch() Method in C# | Set -1
Last Updated :
18 Aug, 2023
Array.BinarySearch() method is used to search a value in a sorted one dimensional array. The binary search algorithm is used by this method. This algorithm searches a sorted array by repeatedly dividing the search interval in half. Begin with an interval covering the whole array. If the value of the search key is less than the item in the middle of the interval, narrow the interval to the lower half. Otherwise, narrow it to the upper half. Repeatedly check until the value is found or the interval is empty.
Important Points:
- Before calling this method, the array must be sorted.
- This method will return the negative integer if the array doesn’t contain the specified value.
- The array must be one-dimensional otherwise this method can’t be used.
- The Icomparable interface must be implemented by the value or every element of the array.
- The method will return the index of only one of the occurrences if more than one matched elements found in the array and it is not necessary that index will be of the first occurrence.
There are total 8 methods in the overload list of this method as follows:
- BinarySearch(Array, Object)
- BinarySearch(Array, Object, IComparer)
- BinarySearch(Array, Int32, Int32, Object)
- BinarySearch(Array, Int32, Int32, Object, IComparer)
- BinarySearch<T>(T[], T)
- BinarySearch<T>(T[], T, IComparer<T>)
- BinarySearch<T>(T[], Int32, Int32, T)
- BinarySearch<T>(T[], Int32, Int32, T, IComparer<T>)
This method is used to search a specific element in the entire 1-D sorted array. It used the IComparable interface that is implemented by each element of the 1-D array and the specified object. This method is an O(log n) operation, where n is the Length of the specified array.
Syntax: public static int BinarySearch (Array arr, object val);
Parameters:
arr: It is the sorted 1-D array to search.
val: It is the object to search for.
Return Value: It returns the index of the specified valin the specified arr if the val is found otherwise it returns a negative number. There are different cases of return values as follows:
- If the val is not found and valis less than one or more elements in the arr, the negative number returned is the bitwise complement of the index of the first element that is larger than val.
- If the val is not found and val is greater than all elements in the arr, the negative number returned is the bitwise complement of (the index of the last element plus 1).
- If this method is called with a non-sorted array, the return value can be incorrect and a negative number could be returned, even if the val is present in the arr.
Exceptions:
- ArgumentNullException: If the arr is null.
- RankException: If the arr is multidimensional.
- ArgumentException: If the val is of a type which is not compatible with the elements of the arr.
- InvalidOperationException: If the val does not implement the IComparable interface, and the search encounters an element that does not implement the IComparable interface.
Below programs illustrate the above-discussed method:
Example 1:
C#
using System;
class GFG {
public static void Main(String[] args)
{
int [] arr = new int [7] { 1, 5, 7, 4, 6, 2, 3 };
Array.Sort(arr);
Console.Write( "The elements of Sorted Array: " );
display(arr);
object s = 8;
result(arr, s);
object s1 = 4;
result(arr, s1);
}
static void result( int [] arr2, object k)
{
int res = Array.BinarySearch(arr2, k);
if (res < 0) {
Console.WriteLine( "\nThe element to search for "
+ "({0}) is not found." ,
k);
}
else {
Console.WriteLine( "The element to search for "
+ "({0}) is at index {1}." ,
k, res);
}
}
static void display( int [] arr1)
{
foreach ( int i in arr1)
Console.Write(i + " " );
}
}
|
Output:
The elements of Sorted Array: 1 2 3 4 5 6 7
The element to search for (8) is not found.
The element to search for (4) is at index 3.
Example 2:
C#
using System;
class GFG {
public static void Main(String[] args)
{
int [] arr = new int [7] { 1, 5, 7, 4, 6, 2, 3 };
Array.Sort(arr);
Console.Write( "The elements of Sorted Array: " );
display(arr);
Console.WriteLine( "\nIndex of 9 is: " + Array.BinarySearch(arr, 9));
}
static void display( int [] arr1)
{
foreach ( int i in arr1)
Console.Write(i + " " );
}
}
|
Output:
The elements of Sorted Array: 1 2 3 4 5 6 7
Index of 9 is: -8
This method is used to search a specific element in the entire 1-D sorted array using the specified IComparer interface.
Syntax: public static int BinarySearch(Array arr, Object val, IComparer comparer)
Parameters:
arr : The one-dimensional sorted array in which the search will happen.
val : The object value which is to search for.
comparer : When comparing elements then the IComparer implementation is used.
Return Value: It returns the index of the specified val in the specified arr if the val is found otherwise it returns a negative number. There are different cases of return values as follows:
- If the val is not found and val is less than one or more elements in the arr, the negative number returned is the bitwise complement of the index of the first element that is larger than val.
- If the val is not found and val is greater than all elements in the arr, the negative number returned is the bitwise complement of (the index of the last element plus 1).
- If this method is called with a non-sorted array, the return value can be incorrect and a negative number could be returned, even if the val is present in the arr.
Exceptions:
- ArgumentNullException: If the arr is null.
- RankException: If arr is multidimensional.
- ArgumentException: If the range is less than lower bound OR length is less than 0.
- ArgumentException: If the comparer is null, and value is of a type that is not compatible with the elements of arr.
- InvalidOperationException: If the comparer is null, value does not implement the IComparable interface, and the search encounters an element that does not implement the IComparable interface.
Example:
C#
using System;
class GFG {
public static void Main()
{
Array arr = Array.CreateInstance( typeof (Int32), 5);
arr.SetValue(20, 0);
arr.SetValue(10, 1);
arr.SetValue(30, 2);
arr.SetValue(40, 3);
arr.SetValue(50, 4);
Console.WriteLine( "The original Array" );
display(arr);
Console.WriteLine( "\nsorted array" );
Array.Sort(arr);
display(arr);
Console.WriteLine( "\n1st call" );
object obj1 = 10;
FindObj(arr, obj1);
Console.WriteLine( "\n2nd call" );
object obj2 = 60;
FindObj(arr, obj2);
}
public static void FindObj(Array Arr,
object Obj)
{
int index = Array.BinarySearch(Arr, Obj,
StringComparer.CurrentCulture);
if (index < 0) {
Console.WriteLine( "The object {0} is not found\nNext"
+ " larger object is at index {1}" ,
Obj, ~index);
}
else {
Console.WriteLine( "The object {0} is at index {1}" ,
Obj, index);
}
}
public static void display(Array arr)
{
foreach ( int g in arr)
{
Console.WriteLine(g);
}
}
}
|
Output:
The original Array
20
10
30
40
50
sorted array
10
20
30
40
50
1st call
The object 10 is at index 0
2nd call
The object 60 is not found
Next larger object is at index 5
This method is used to search a value in the range of elements in a 1-D sorted array. It uses the IComparable interface implemented by each element of the array and the specified value. It searches only in a specified boundary which is defined by the user.
Syntax: public static int BinarySearch(Array arr, int i, int len, object val);
Parameters:
arr: It is 1-D array in which the user have to search for an element.
i: It is the starting index of the range from where the user want to start the search.
len: It is the length of the range in which the user want to search.
val: It is the value which the user to search for.
Return Value: It returns the index of the specified val in the specified arr if the val is found otherwise it returns a negative number. There are different cases of return values as follows:
- If the val is not found and val is less than one or more elements in the arr, the negative number returned is the bitwise complement of the index of the first element that is larger than val.
- If the val is not found and val is greater than all elements in the arr, the negative number returned is the bitwise complement of (the index of the last element plus 1).
- If this method is called with a non-sorted array, the return value can be incorrect and a negative number could be returned, even if the val is present in the arr.
Exceptions:
- ArgumentNullException: If the arr is null.
- RankException: If arr is multidimensional.
- ArgumentOutOfRangeException: If the index is less than lower bound of array OR length is less than 0.
- ArgumentException: If the index and length do not specify the valid range in array OR the value is of the type which is not compatible with the elements of the array.
- InvalidOperationException: If value does not implement the IComparable interface, and the search encounters an element that does not implement the IComparable interface.
Example:
C#
using System;
using System.IO;
class GFG {
static void Main()
{
int [] intArr = { 42, 5, 7, 12, 56, 1, 32 };
Array.Sort(intArr);
foreach ( int i in intArr) Console.Write(i + " "
+ "\n" );
int index = Array.BinarySearch(intArr, 1, 5, 32);
if (index >= 0) {
Console.WriteLine( "Index of 32 is : " + index);
}
else {
Console.Write( "Element is not found" );
}
int index1 = Array.BinarySearch(intArr, 1, 5, 44);
Console.WriteLine( "Index of 44 is :" + index1);
}
}
|
Output:
1
5
7
12
32
42
56
Index of 32 is : 4
Index of 44 is :-7
This method is used to search a value in the range of elements in a 1-D sorted array using a specified IComparer interface.
Syntax: public static int BinarySearch(Array arr, int index, int length, Object value, IComparer comparer)
Parameters:
arr : The sorted one-dimensional Array which is to be searched.
index : The starting index of the range from which searching will start.
length : The length of the range in which the search will happen.
value : The object to search for.
comparer : When comparing elements then use the IComparer implementation.
Return Value: It returns the index of the specified value in the specified arr, if the value is found otherwise it returns a negative number. There are different cases of return values as follows:
- If the value is not found and value is less than one or more elements in the array, the negative number returned is the bitwise complement of the index of the first element that is larger than value.
- If the value is not found and value is greater than all elements in the array, the negative number returned is the bitwise complement of (the index of the last element plus 1).
- If this method is called with a non-sorted array, the return value can be incorrect and a negative number could be returned, even if the value is present in the array.
Example: In this example, here we use “CreateInstance()” method to create a typed array and stores some integer value and search some values after sort the array.
C#
using System;
class GFG {
public static void Main()
{
Array arr = Array.CreateInstance( typeof (Int32), 8);
arr.SetValue(20, 0);
arr.SetValue(10, 1);
arr.SetValue(30, 2);
arr.SetValue(40, 3);
arr.SetValue(50, 4);
arr.SetValue(80, 5);
arr.SetValue(70, 6);
arr.SetValue(60, 7);
Console.WriteLine( "The original Array" );
display(arr);
Console.WriteLine( "\nsorted array" );
Array.Sort(arr);
display(arr);
Console.WriteLine( "\n1st call" );
object obj1 = 10;
FindObj(arr, obj1);
Console.WriteLine( "\n2nd call" );
object obj2 = 60;
FindObj(arr, obj2);
}
public static void FindObj(Array Arr,
object Obj)
{
int index = Array.BinarySearch(Arr, 1, 4,
Obj, StringComparer.CurrentCulture);
if (index < 0) {
Console.WriteLine( "The object {0} is not found\n"
+ "Next larger object is at index {1}" ,
Obj, ~index);
}
else {
Console.WriteLine( "The object {0} is at "
+ "index {1}" ,
Obj, index);
}
}
public static void display(Array arr)
{
foreach ( int g in arr)
{
Console.WriteLine(g);
}
}
}
|
Output:
The original Array
20
10
30
40
50
80
70
60
sorted array
10
20
30
40
50
60
70
80
1st call
The object 10 is not found
Next larger object is at index 1
2nd call
The object 60 is not found
Next larger object is at index 5
Similar Reads
C# | Copying the entire ArrayList to 1-D Array starting at the specified index
ArrayList.CopyTo(Array, Int32) Method is used to copy the entire ArrayList to a compatible one-dimensional Array, starting at the specified index of the target array. Syntax: public virtual void CopyTo (Array array, int arrayIndex); Parameters: array: It is the one-dimensional Array that is the dest
4 min read
C# Program to Find the Index of Even Numbers using LINQ
Given an array, now our task is to find the index value of the even numbers present in the given array using LINQ. LINQ is known as Language Integrated Query and was introduced in .NET 3.5. It gives the power to .NET languages to generate queries to retrieve data from the data source. So to do this
2 min read
C# - Perform Searching using Predefined Functions
Given an array, now our task is to perform searching an element in an array using predefined functions in C#. So, the best searching technique is Binary search and will search the given element in an array using predefined functions. Binary search is an efficient algorithm that will work only on sor
3 min read
C# Program to Find the Negative Double Numbers From the List of Objects Using LINQ
Given a list of objects, we need to find the negative double from the list of objects, this task can be done using the OfType() method along with the Where() method. OfType() method is used to filter the elements of an IEnumerable based on a specified type. Or in other words, this method is used to
2 min read
How to use Array.BinarySearch() Method in C# | Set -2
Array.BinarySearch() method is used to search a value in a sorted one dimensional array. The binary search algorithm is used by this method. This algorithm searches a sorted array by repeatedly dividing the search interval in half. Begin with an interval covering the whole array. If the value of the
12 min read
How to Use bsearch with an Array in C?
The bsearch() is a library function in C that is used to perform binary search on a given sorted array. In this article, we will learn how to use search on an array in C. Example Input: arr[]= { 2, 5, 7, 11, 15 };Key=15Output:Value 15 found!bsearch() with an Array in CTo use bsearch() on a given arr
2 min read
How to Use bsearch with an Array of Struct in C?
The bsearch function in C is a standard library function defined in the stdlib.h header file that is used to perform binary search on array-like structure. In this article, we will learn to use bsearch with an array of struct in C. Input: struct Person people[] = { { 1, "Ram" }, { 2, "Rohan" }, { 4,
3 min read
How to Sort an Array in C# | Array.Sort() Method Set - 1
Array.Sort Method in C# is used to sort elements in a one-dimensional array. There are 17 methods in the overload list of this method as follows: Sort<T>(T[]) MethodSort<T>(T[], IComparer<T>) MethodSort<T>(T[], Int32, Int32) MethodSort<T>(T[], Comparison<T>) Metho
8 min read
Array.BinarySearch(Array, Object) Method with examples in C#
This method is used to search a specific element in the entire one-dimensional sorted array by using the IComparable interface which is implemented by each element of the array and by the specified object. Syntax: public static int BinarySearch (Array array, object value); Parameters: array: It is t
4 min read
C# | Array.BinarySearch(Array, Object, IComparer) Method
This method searches for a value in a one-dimensional sorted array using a specified IComparer interface. Syntax: public static int BinarySearch(Array arr, Object val, IComparer comparer) Parameters: arr : The one-dimensional sorted array in which the search will happen. val : The object value which
4 min read