Skip to main content

Binary search with and without recursion c++

Binary search is a search algorithm that works on sorted arrays or lists by repeatedly dividing the search interval in half. 
Condition : The array must be a sorted array.

binary search algorithm
binary search algorithm



Algorithm for binary search :
  • It begins by comparing the target value to the middle element of the array.

  •  If the target value matches the middle element, the search is successful, and the algorithm returns the index of the middle element. 

  • If the target value is less than the middle element, the search continues in the lower half of the array.

  •  if it is greater, the search continues in the upper half of the array.

  •  The search interval is repeatedly divided in half until the target value is found or until the search interval is empty.

Example of binary search: 

Sure! Here is an example of how binary search works:

Suppose we have a sorted array of integers:

[1, 3, 5, 7, 9, 11, 13, 15, 17, 19]



And we want to search for the value 11.


  1. We start by setting two variables, low and high, to the first and last indices of the array respectively:


low = 0
high = 9


  1. We find the middle index of the array by adding low and high and dividing by 2 (integer division):

mid = (low + high) // 2


This gives us mid = 4, so we compare the value at index 4 (9) to our target value 11.


  1. Since 11 is greater than 9, we know that the target value must be in the upper half of the array. We update low to be mid + 1:

low = mid + 1 = 5


  1. We repeat step 2 to find the new middle index of the upper half of the array:

mid = (low + high) // 2 = (5 + 9) // 2 = 7


  1. We compare the value at index 7 (13) to our target value 11.


  1. Since 11 is less than 13, we know that the target value must be in the lower half of the upper half of the array. We update high to be mid - 1:

high = mid - 1 = 6


  1. We repeat step 2 to find the new middle index of the lower half of the upper half of the array:

mid = (low + high) // 2 = (5 + 6) // 2 = 5


  1. We compare the value at index 5 (11) to our target value 11.


  1. Since the two values match, we have found our target value! We return the index 5 where it is located.

This process of repeatedly dividing the search interval in half is the essence of binary search. The time complexity of binary search is O(log n), where n is the size of the array. This makes it very efficient for searching large arrays.


Binary search c++ recursive code : 


int binary_search_recursion(vector<int>&arr , int low , int high , int target)
{
    if(low <= high)
    {
        int mid = low + (high-low)/2 ;
        if(arr[mid] == target)
        {
            return mid;
        }
        else
        if(arr[mid] < target)
        {
            return binary_search_recursion(arr , mid+1  , high , target );
        }
        else
        {
            return binary_search_recursion(arr , low, mid-1 , target);
        }
    }
    return -1;
}



Binary search c++ iterative code : 


int binary_search(vector<int>arr , int low , int high , int target)
{
    while(low <= high)
    {
        int mid = low + (high-low)/2 ;
        if(arr[mid] == target)
        {
            return mid;
        }
        else
        if(arr[mid] < target)
        {
            low = mid+1;
           
        }
        else
        {
            high = mid -1;
        }
    }
    return -1;
}



Time complexity : O(log(n))

Space complexity : O(1)




Comments

Popular posts from this blog

[PDF DOWNLOAD] AKTU Quantum series data structure b.tech 2nd year download

  All AKTU Quantums are available here. Get your hands on AKTU Quantums and boost your grades in AKTU semester exams. You can either search them category wise or can use the search bar or can manually search on this page. Download aktu second year quantum pdf data structures  download  data structures quantum aktu download aktu data structures quantum click here to download  write in comment section if you want quantum of any other subject.

leetcode 48 solution

  48 .  Rotate Image You are given an  n x n  2D  matrix  representing an image, rotate the image by  90  degrees (clockwise). You have to rotate the image  in-place , which means you have to modify the input 2D matrix directly.  DO NOT  allocate another 2D matrix and do the rotation.   Example 1: Input: matrix = [[1,2,3],[4,5,6],[7,8,9]] Output: [[7,4,1],[8,5,2],[9,6,3]] Example 2: Input: matrix = [[5,1,9,11],[2,4,8,10],[13,3,6,7],[15,14,12,16]] Output: [[15,13,2,5],[14,3,4,1],[12,6,8,9],[16,7,10,11]]   Constraints: n == matrix.length == matrix[i].length 1 <= n <= 20 -1000 <= matrix[i][j] <= 1000 solution: class Solution { public:     void swap(int& a , int &b)     {         int c ;         c = a;         a = b;         b = c;     }     void transpose (vector<vector<int>...

2485. Find the Pivot Integer | Binary search

  Given a positive integer   n , find the   pivot integer   x   such that: The sum of all elements between  1  and  x  inclusively equals the sum of all elements between  x  and  n  inclusively. Return  the pivot integer  x . If no such integer exists, return  -1 . It is guaranteed that there will be at most one pivot index for the given input.   Example 1: Input: n = 8 Output: 6 Explanation: 6 is the pivot integer since: 1 + 2 + 3 + 4 + 5 + 6 = 6 + 7 + 8 = 21. Example 2: Input: n = 1 Output: 1 Explanation: 1 is the pivot integer since: 1 = 1. Example 3: Input: n = 4 Output: -1 Explanation: It can be proved that no such integer exist.   Constraints: 1 <= n <= 1000 Solution : class Solution { publ ic:     int pivotInteger( int n ) {         int sum = (( n )*( n + 1 ))/ 2 ;         int i = 1 ;         int j =...