Computer Science Engineering (CSE) Exam  >  Computer Science Engineering (CSE) Notes  >  Algorithms  >  Linear Search & Binary Search- 2

Linear Search & Binary Search- 2 | Algorithms - Computer Science Engineering (CSE) PDF Download

Given a sorted array arr[] of n elements, write a function to search a given element x in arr[].
A simple approach is to do a linear search. The time complexity of the above algorithm is O(n). Another approach to perform the same task is using Binary Search. 

Binary Search: Search 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.
Example :
Linear Search & Binary Search- 2 | Algorithms - Computer Science Engineering (CSE)The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(Log n). 

We basically ignore half of the elements just after one comparison.

  1. Compare x with the middle element.
  2. If x matches with the middle element, we return the mid index.
  3. Else If x is greater than the mid element, then x can only lie in the right half subarray after the mid element. So we recur for the right half.
  4. Else (x is smaller) recur for the left half.

Recursive implementation of Binary Search

  • C++
    // C++ program to implement recursive Binary Search
    #include <bits/stdc++.h>
    using namespace std;
    // A recursive binary search function. It returns
    // location of x in given array arr[l..r] is present,
    // otherwise -1
    int binarySearch(int arr[], int l, int r, int x)
    {
        if (r >= l) {
            int mid = l + (r - l) / 2;
            // If the element is present at the middle
            // itself
            if (arr[mid] == x)
                return mid;
            // If element is smaller than mid, then
            // it can only be present in left subarray
            if (arr[mid] > x)
                return binarySearch(arr, l, mid - 1, x);
            // Else the element can only be present
            // in right subarray
            return binarySearch(arr, mid + 1, r, x);
        }
        // We reach here when element is not
        // present in array
        return -1;
    }
    int main(void)
    {
        int arr[] = { 2, 3, 4, 10, 40 };
        int x = 10;
        int n = sizeof(arr) / sizeof(arr[0]);
        int result = binarySearch(arr, 0, n - 1, x);
        (result == -1) ? cout << "Element is not present in array"
                       : cout << "Element is present at index " << result;
        return 0;
    }
  • C
    // C program to implement recursive Binary Search
    #include <stdio.h>
    // A recursive binary search function. It returns
    // location of x in given array arr[l..r] is present,
    // otherwise -1
    int binarySearch(int arr[], int l, int r, int x)
    {
        if (r >= l) {
            int mid = l + (r - l) / 2;
            // If the element is present at the middle
            // itself
            if (arr[mid] == x)
                return mid;
            // If element is smaller than mid, then
            // it can only be present in left subarray
            if (arr[mid] > x)
                return binarySearch(arr, l, mid - 1, x);
            // Else the element can only be present
            // in right subarray
            return binarySearch(arr, mid + 1, r, x);
        }
        // We reach here when element is not
        // present in array
        return -1;
    }
    int main(void)
    {
        int arr[] = { 2, 3, 4, 10, 40 };
        int n = sizeof(arr) / sizeof(arr[0]);
        int x = 10;
        int result = binarySearch(arr, 0, n - 1, x);
        (result == -1) ? printf("Element is not present in array")
                       : printf("Element is present at index %d",
                                result);
        return 0;
    }
  • Java
    // Java implementation of recursive Binary Search
    class BinarySearch {
        // Returns index of x if it is present in arr[l..
        // r], else return -1
        int binarySearch(int arr[], int l, int r, int x)
        {
            if (r >= l) {
                int mid = l + (r - l) / 2;
                // If the element is present at the
                // middle itself
                if (arr[mid] == x)
                    return mid;
                // If element is smaller than mid, then
                // it can only be present in left subarray
                if (arr[mid] > x)
                    return binarySearch(arr, l, mid - 1, x);
                // Else the element can only be present
                // in right subarray
                return binarySearch(arr, mid + 1, r, x);
            }
            // We reach here when element is not present
            // in array
            return -1;
        }
        // Driver method to test above
        public static void main(String args[])
        {
            BinarySearch ob = new BinarySearch();
            int arr[] = { 2, 3, 4, 10, 40 };
            int n = arr.length;
            int x = 10;
            int result = ob.binarySearch(arr, 0, n - 1, x);
            if (result == -1)
                System.out.println("Element not present");
            else
                System.out.println("Element found at index " + result);
        }
    }
    /* This code is contributed by Rajat Mishra */
  • Python3
    # Python3 Program for recursive binary search.
    # Returns index of x in arr if present, else -1
    def binarySearch (arr, l, r, x):
        # Check base case
        if r >= l:
            mid = l + (r - l) // 2
            # If element is present at the middle itself
            if arr[mid] == x:
                return mid
            # If element is smaller than mid, then it
            # can only be present in left subarray
            elif arr[mid] > x:
                return binarySearch(arr, l, mid-1, x)
            # Else the element can only be present
            # in right subarray
            else:
                return binarySearch(arr, mid + 1, r, x)
        else:
            # Element is not present in the array
            return -1
    # Driver Code
    arr = [ 2, 3, 4, 10, 40 ]
    x = 10
    # Function call
    result = binarySearch(arr, 0, len(arr)-1, x)
    if result != -1:
        print ("Element is present at index % d" % result)
    else:
        print ("Element is not present in array")
  • C#
    // C# implementation of recursive Binary Search
    using System;
    class GFG {
        // Returns index of x if it is present in
        // arr[l..r], else return -1
        static int binarySearch(int[] arr, int l,
                                int r, int x)
        {
            if (r >= l) {
                int mid = l + (r - l) / 2;
                // If the element is present at the
                // middle itself
                if (arr[mid] == x)
                    return mid;
                // If element is smaller than mid, then
                // it can only be present in left subarray
                if (arr[mid] > x)
                    return binarySearch(arr, l, mid - 1, x);
                // Else the element can only be present
                // in right subarray
                return binarySearch(arr, mid + 1, r, x);
            }
            // We reach here when element is not present
            // in array
            return -1;
        }
        // Driver method to test above
        public static void Main()
        {
            int[] arr = { 2, 3, 4, 10, 40 };
            int n = arr.Length;
            int x = 10;
            int result = binarySearch(arr, 0, n - 1, x);
            if (result == -1)
                Console.WriteLine("Element not present");
            else
                Console.WriteLine("Element found at index "
                                  + result);
        }
    }
    // This code is contributed by Sam007.
  • PHP
    <?php
    // PHP program to implement
    // recursive Binary Search
    // A recursive binary search
    // function. It returns location
    // of x in given array arr[l..r]
    // is present, otherwise -1
    function binarySearch($arr, $l, $r, $x)
    {
    if ($r >= $l)
    {
            $mid = ceil($l + ($r - $l) / 2);
            // If the element is present
            // at the middle itself
            if ($arr[$mid] == $x)
                return floor($mid);
            // If element is smaller than
            // mid, then it can only be
            // present in left subarray
            if ($arr[$mid] > $x)
                return binarySearch($arr, $l,
                                    $mid - 1, $x);
            // Else the element can only
            // be present in right subarray
            return binarySearch($arr, $mid + 1,
                                $r, $x);
    }
    // We reach here when element
    // is not present in array
    return -1;
    }
    // Driver Code
    $arr = array(2, 3, 4, 10, 40);
    $n = count($arr);
    $x = 10;
    $result = binarySearch($arr, 0, $n - 1, $x);
    if(($result == -1))
    echo "Element is not present in array";
    else
    echo "Element is present at index ",
                                $result;
    // This code is contributed by anuj_67.
    ?>
  • Javascript
    <script>
    // JavaScript program to implement recursive Binary Search
    // A recursive binary search function. It returns
    // location of x in given array arr[l..r] is present,
    // otherwise -1
    function binarySearch(arr, l, r, x){
        if (r >= l) {
            let mid = l + Math.floor((r - l) / 2);
            // If the element is present at the middle
            // itself
            if (arr[mid] == x)
                return mid;
            // If element is smaller than mid, then
            // it can only be present in left subarray
            if (arr[mid] > x)
                return binarySearch(arr, l, mid - 1, x);
            // Else the element can only be present
            // in right subarray
            return binarySearch(arr, mid + 1, r, x);
        }
        // We reach here when element is not
        // present in array
        return -1;
    }
    let arr = [ 2, 3, 4, 10, 40 ];
    let x = 10;
    let n = arr.length
    let result = binarySearch(arr, 0, n - 1, x);
    (result == -1) ? document.write( "Element is not present in array")
                       : document.write("Element is present at index " +result);
    </script>

Output: Element is present at index 3
Here you can create a check function for easier implementation.
Here is recursive implementation with check function which I feel is a much easier 

Implementation:

  • C++
    C++
    #include <bits/stdc++.h>
    using namespace std;
    //define array globally
    const int N = 1e6 +4;
    int a[N];
    int n;//array size
    //elememt to be searched in array
       int k;
    bool check(int dig)
    {
        //element at dig position in array
        int ele=a[dig];
        //if k is less than
        //element at dig position
        //then we need to bring our higher ending to dig
        //and then continue further
        if(k<=ele)
        {
            return 1;
        }
        else
        {
        return 0;
        }
    }
    void binsrch(int lo,int hi)
    {
        while(lo<hi)
        {
            int mid=(lo+hi)/2;
            if(check(mid))
            {
                hi=mid;
            }
            else
            {
              lo=mid+1;
            }
        }
        //if a[lo] is k
        if(a[lo]==k)
            cout<<"Element found at index "<<lo;// 0 based indexing
        else
            cout<<"Element doesnt exist in array";//element was not in our array
    }
    int main()
    {  
        cin>>n;
       for(int i=0; i<n; i++)
       {
        cin>>a[i];
       }
       cin>>k;
       //it is being given array is sorted
       //if not then we have to sort it
       //minimum possible point where our k can be is starting index
       //so lo=0
       //also k cannot be outside of array so end point
       //hi=n
       binsrch(0,n);
        return 0;
    }
The document Linear Search & Binary Search- 2 | Algorithms - Computer Science Engineering (CSE) is a part of the Computer Science Engineering (CSE) Course Algorithms.
All you need of Computer Science Engineering (CSE) at this link: Computer Science Engineering (CSE)
81 videos|80 docs|33 tests

Top Courses for Computer Science Engineering (CSE)

FAQs on Linear Search & Binary Search- 2 - Algorithms - Computer Science Engineering (CSE)

1. What is the difference between linear search and binary search?
Ans. Linear search is a simple search algorithm that sequentially checks each element of a list until a match is found or the end of the list is reached. In contrast, binary search is a more efficient search algorithm that divides the list into two halves and repeatedly narrows down the search range by comparing the middle element with the target value.
2. Which search algorithm is faster: linear search or binary search?
Ans. Binary search is generally faster than linear search. In linear search, the time complexity is O(n), where n is the number of elements in the list. On the other hand, binary search has a time complexity of O(log n), which means it can search a sorted list much more quickly, especially for large data sets.
3. Can binary search be applied to an unsorted list?
Ans. No, binary search can only be applied to a sorted list. Since binary search divides the list into two halves and relies on the order of elements, it will not work correctly on an unsorted list. If the list is unsorted, linear search should be used instead.
4. What are the advantages of using binary search over linear search?
Ans. There are a few advantages of using binary search over linear search. Firstly, binary search is more efficient for large data sets as it has a logarithmic time complexity, while linear search has a linear time complexity. Secondly, binary search can quickly locate an element in a sorted list, making it useful for tasks like searching in databases or dictionaries. Lastly, binary search can be implemented recursively, which can simplify the code and make it easier to understand.
5. In which scenarios is linear search preferred over binary search?
Ans. Linear search is preferred over binary search in certain scenarios. Firstly, if the list is small or not sorted, linear search can be simpler and more straightforward to implement. Additionally, linear search can be used when the elements of the list are not comparable or when the list is unordered. In these cases, binary search would not be applicable, and linear search would be the only option.
81 videos|80 docs|33 tests
Download as PDF
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Exam

,

past year papers

,

Objective type Questions

,

Previous Year Questions with Solutions

,

Summary

,

ppt

,

Linear Search & Binary Search- 2 | Algorithms - Computer Science Engineering (CSE)

,

Important questions

,

practice quizzes

,

video lectures

,

MCQs

,

Viva Questions

,

mock tests for examination

,

Linear Search & Binary Search- 2 | Algorithms - Computer Science Engineering (CSE)

,

study material

,

Free

,

shortcuts and tricks

,

Linear Search & Binary Search- 2 | Algorithms - Computer Science Engineering (CSE)

,

Semester Notes

,

pdf

,

Sample Paper

,

Extra Questions

;