Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • DSA
  • Practice Searching Algorithms
  • MCQs on Searching Algorithms
  • Tutorial on Searching Algorithms
  • Linear Search
  • Binary Search
  • Ternary Search
  • Jump Search
  • Sentinel Linear Search
  • Interpolation Search
  • Exponential Search
  • Fibonacci Search
  • Ubiquitous Binary Search
  • Linear Search Vs Binary Search
  • Interpolation Search Vs Binary Search
  • Binary Search Vs Ternary Search
  • Sentinel Linear Search Vs Linear Search
Open In App
Next Article:
Meta Binary Search | One-Sided Binary Search
Next article icon

Variants of Binary Search

Last Updated : 01 Aug, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

Binary 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 of a key 
3) Index of last occurrence of a key 
4) Index of least element greater than key 
5) Index of greatest element less than key

Each of these searches, while the base logic remains same, have a minor variation in implementation and competitive coders should be aware of them. You might have seen other approaches such as this for finding first and last occurrence, where you compare adjacent element also for checking of first/last element is reached. 

From a complexity perspective, it may look like an O(log n) algorithm, but it doesn't work when the comparisons itself are expensive. A problem to prove this point is linked at the end of this post, feel free to try it out.
Variant 1: Contains key (True or False) 

Input : 2 3 3 5 5 5 6 6 Function : Contains(4) Returns : False  Function : Contains(5) Returns : True


Variant 2: First occurrence of key (index of array). This is similar to 

C++
std::lower_bound(...) 
Input : 2 3 3 5 5 5 6 6 Function : first(3) Returns : 1  Function : first(5) Returns : 3  Function : first(4) Returns : -1

Variant 3: Last occurrence of key (index of array) 

Input : 2 3 3 5 5 5 6 6 Function : last(3) Returns : 2  Function : last(5) Returns : 5  Function : last(4) Returns : -1


Variant 4: index(first occurrence) of least integer greater than key. This is similar to 

C++
std::upper_bound(...) 
Input : 2 3 3 5 5 5 6 6 Function : leastGreater(2) Returns : 1  Function : leastGreater(5) Returns : 6

Variant 5: index(last occurrence) of greatest integer lesser than key 

Input : 2 3 3 5 5 5 6 6 Function : greatestLesser(2) Returns : -1  Function : greatestLesser(5) Returns : 2


As you will see below, if you observe the clear difference between the implementations you will see that the same logic is used to find different variants of binary search.

C++
// C++ program to variants of Binary Search #include <bits/stdc++.h>  using namespace std;  int n = 8; // array size int a[] = { 2, 3, 3, 5, 5, 5, 6, 6 }; // Sorted array  /* Find if key is in array  * Returns: True if key belongs to array,  *          False if key doesn't belong to array */ bool contains(int low, int high, int key) {     bool ans = false;     while (low <= high) {         int mid = low + (high - low) / 2;         int midVal = a[mid];          if (midVal < key) {              // if mid is less than key, all elements              // in range [low, mid] are also less             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key) {              // if mid is greater than key, all elements             // in range [mid + 1, high] are also greater             // so we now search in [low, mid - 1]             high = mid - 1;         }         else if (midVal == key) {              // comparison added just for the sake              // of clarity if mid is equal to key, we              // have found that key exists in array             ans = true;             break;         }     }      return ans; }  /* Find first occurrence index of key in array  * Returns: an index in range [0, n-1] if key belongs   *          to array, -1 if key doesn't belong to array  */ int first(int low, int high, int key) {     int ans = -1;      while (low <= high) {         int mid = low + (high - low + 1) / 2;         int midVal = a[mid];          if (midVal < key) {              // if mid is less than key, all elements             // in range [low, mid] are also less             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key) {              // if mid is greater than key, all elements              // in range [mid + 1, high] are also greater             // so we now search in [low, mid - 1]             high = mid - 1;         }         else if (midVal == key) {              // if mid is equal to key, we note down             //  the last found index then we search              // for more in left side of mid             // so we now search in [low, mid - 1]             ans = mid;             high = mid - 1;         }     }      return ans; }  /* Find last occurrence index of key in array  * Returns: an index in range [0, n-1] if key               belongs to array,  *          -1 if key doesn't belong to array  */ int last(int low, int high, int key) {     int ans = -1;      while (low <= high) {         int mid = low + (high - low + 1) / 2;         int midVal = a[mid];          if (midVal < key) {              // if mid is less than key, then all elements              // in range [low, mid - 1] are also less             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key) {              // if mid is greater than key, then all              // elements in range [mid + 1, high] are              // also greater so we now search in              // [low, mid - 1]             high = mid - 1;         }         else if (midVal == key) {              // if mid is equal to key, we note down              // the last found index then we search              // for more in right side of mid             // so we now search in [mid + 1, high]             ans = mid;             low = mid + 1;         }     }      return ans; }  /* Find index of first occurrence of least element     greater than key in array  * Returns: an index in range [0, n-1] if key is not              the greatest element in array,  *          -1 if key is the greatest element in array */ int leastgreater(int low, int high, int key) {     int ans = -1;      while (low <= high) {         int mid = low + (high - low + 1) / 2;         int midVal = a[mid];          if (midVal < key) {              // if mid is less than key, all elements             // in range [low, mid - 1] are <= key             // then we search in right side of mid             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key) {              // if mid is greater than key, all elements             // in range [mid + 1, high] are >= key             // we note down the last found index, then              // we search in left side of mid             // so we now search in [low, mid - 1]             ans = mid;             high = mid - 1;         }         else if (midVal == key) {              // if mid is equal to key, all elements in             // range [low, mid] are <= key             // so we now search in [mid + 1, high]             low = mid + 1;         }     }      return ans; }  /* Find index of last occurrence of greatest element    less than key in array  * Returns: an index in range [0, n-1] if key is not               the least element in array,  *          -1 if key is the least element in array */ int greatestlesser(int low, int high, int key) {     int ans = -1;      while (low <= high) {         int mid = low + (high - low + 1) / 2;         int midVal = a[mid];          if (midVal < key) {              // if mid is less than key, all elements              // in range [low, mid - 1] are < key             // we note down the last found index, then              // we search in right side of mid             // so we now search in [mid + 1, high]             ans = mid;             low = mid + 1;         }         else if (midVal > key) {              // if mid is greater than key, all elements             // in range [mid + 1, high] are > key             // then we search in left side of mid             // so we now search in [low, mid - 1]             high = mid - 1;         }         else if (midVal == key) {              // if mid is equal to key, all elements              // in range [mid + 1, high] are >= key             // then we search in left side of mid             // so we now search in [low, mid - 1]             high = mid - 1;         }     }      return ans; }  int main() {     printf("Contains\n");     for (int i = 0; i < 10; i++)         printf("%d %d\n", i, contains(0, n - 1, i));      printf("First occurrence of key\n");     for (int i = 0; i < 10; i++)         printf("%d %d\n", i, first(0, n - 1, i));      printf("Last occurrence of key\n");     for (int i = 0; i < 10; i++)         printf("%d %d\n", i, last(0, n - 1, i));      printf("Least integer greater than key\n");     for (int i = 0; i < 10; i++)         printf("%d %d\n", i, leastgreater(0, n - 1, i));      printf("Greatest integer lesser than key\n");     for (int i = 0; i < 10; i++)         printf("%d %d\n", i, greatestlesser(0, n - 1, i));      return 0; } 
Java
// Java program to variants of Binary Search import java.util.*;  class GFG{      // Array size     static int n = 8;    // Sorted array static int a[] = { 2, 3, 3, 5, 5, 5, 6, 6 };    /* Find if key is in array  * Returns: True if key belongs to array,  * False if key doesn't belong to array */ static int contains(int low, int high, int key) {     int ans = 0;          while (low <= high)     {         int mid = low + (high - low) / 2;         int midVal = a[mid];            if (midVal < key)         {                          // If mid is less than key, all elements              // in range [low, mid] are also less             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key)         {                           // If mid is greater than key, all elements             // in range [mid + 1, high] are also greater             // so we now search in [low, mid - 1]             high = mid - 1;         }         else if (midVal == key)         {                           // Comparison added just for the sake              // of clarity if mid is equal to key, we              // have found that key exists in array             ans = 1;             break;         }     }     return ans; }    /* Find first occurrence index of key in array  * Returns: an index in range [0, n-1] if key belongs   *          to array, -1 if key doesn't belong to array  */ static int first(int low, int high, int key) {     int ans = -1;        while (low <= high)      {         int mid = low + (high - low + 1) / 2;         int midVal = a[mid];            if (midVal < key)          {                          // If mid is less than key, all elements             // in range [low, mid] are also less             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key)         {                           // If mid is greater than key, all elements              // in range [mid + 1, high] are also greater             // so we now search in [low, mid - 1]             high = mid - 1;         }         else if (midVal == key)         {                           // If mid is equal to key, we note down             //  the last found index then we search              // for more in left side of mid             // so we now search in [low, mid - 1]             ans = mid;             high = mid - 1;         }     }     return ans; }    /* Find last occurrence index of key in array  * Returns: an index in range [0, n-1] if key              belongs to array, -1 if key doesn't             belong to array  */ static int last(int low, int high, int key) {     int ans = -1;        while (low <= high)     {         int mid = low + (high - low + 1) / 2;         int midVal = a[mid];            if (midVal < key)          {                          // If mid is less than key, then all elements              // in range [low, mid - 1] are also less             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key)         {                           // If mid is greater than key, then all              // elements in range [mid + 1, high] are              // also greater so we now search in              // [low, mid - 1]             high = mid - 1;         }         else if (midVal == key)          {                           // If mid is equal to key, we note down              // the last found index then we search              // for more in right side of mid             // so we now search in [mid + 1, high]             ans = mid;             low = mid + 1;         }     }     return ans; }    /* Find index of first occurrence of least element     greater than key in array  * Returns: an index in range [0, n-1] if key is not             the greatest element in array, -1 if key  *          is the greatest element in array */ static int leastgreater(int low, int high, int key) {     int ans = -1;        while (low <= high)      {         int mid = low + (high - low + 1) / 2;         int midVal = a[mid];            if (midVal < key)          {                          // If mid is less than key, all elements             // in range [low, mid - 1] are <= key             // then we search in right side of mid             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key)         {                           // If mid is greater than key, all elements             // in range [mid + 1, high] are >= key             // we note down the last found index, then              // we search in left side of mid             // so we now search in [low, mid - 1]             ans = mid;             high = mid - 1;         }         else if (midVal == key)         {                           // If mid is equal to key, all elements in             // range [low, mid] are <= key             // so we now search in [mid + 1, high]             low = mid + 1;         }     }     return ans; }    /* Find index of last occurrence of greatest element    less than key in array  * Returns: an index in range [0, n-1] if key is not              the least element in array, -1 if   *          key is the least element in array */ static int greatestlesser(int low, int high, int key) {     int ans = -1;        while (low <= high)     {         int mid = low + (high - low + 1) / 2;         int midVal = a[mid];            if (midVal < key)         {                           // If mid is less than key, all elements              // in range [low, mid - 1] are < key             // we note down the last found index, then              // we search in right side of mid             // so we now search in [mid + 1, high]             ans = mid;             low = mid + 1;         }         else if (midVal > key)          {                           // If mid is greater than key, all elements             // in range [mid + 1, high] are > key             // then we search in left side of mid             // so we now search in [low, mid - 1]             high = mid - 1;         }         else if (midVal == key)         {                           // If mid is equal to key, all elements              // in range [mid + 1, high] are >= key             // then we search in left side of mid             // so we now search in [low, mid - 1]             high = mid - 1;         }     }        return ans; }    // Driver Code public static void main(String[] args) {     System.out.println("Contains");     for(int i = 0; i < 10; i++)         System.out.println(i + " " + contains(0, n - 1, i));           System.out.println("First occurrence of key");     for(int i = 0; i < 10; i++)         System.out.println(i + " " + first(0, n - 1, i));           System.out.println("Last occurrence of key");     for(int i = 0; i < 10; i++)         System.out.println(i + " " + last(0, n - 1, i));           System.out.println("Least integer greater than key");     for(int i = 0; i < 10; i++)         System.out.println(i + " " +                             leastgreater(0, n - 1, i));           System.out.println("Greatest integer lesser than key");     for(int i = 0; i < 10; i++)         System.out.println(i + " " +                             greatestlesser(0, n - 1, i)); } }  // This code is contributed by divyeshrabadiya07 
Python3
# Python3 program to variants of Binary Search  n = 8;      # array size a = [ 2, 3, 3, 5, 5, 5, 6, 6 ];     # Sorted array  # Find if key is in array # Returns: True if key belongs to array, # False if key doesn't belong to array  def contains(low, high, key):     ans = False;     while (low <= high):         mid = low + ((high - low) // 2);         midVal = a[mid];          if (midVal < key):               # if mid is less than key, all elements              # in range [low, mid] are also less             # so we now search in [mid + 1, high]             low = mid + 1;                  elif (midVal > key):              # if mid is greater than key, all elements             # in range [mid + 1, high] are also greater             # so we now search in [low, mid - 1]             high = mid - 1;                  elif (midVal == key):              # comparison added just for the sake              # of clarity if mid is equal to key, we              # have found that key exists in array             ans = True;             break;              return ans;   # Find first occurrence index of key in array # Returns: an index in range [0, n-1] if key belongs  #          to array, -1 if key doesn't belong to array  def first(low, high, key):          ans = -1;      while (low <= high):         mid = low + ((high - low + 1) // 2);         midVal = a[mid];          if (midVal < key):              # if mid is less than key, all elements             # in range [low, mid] are also less             # so we now search in [mid + 1, high]             low = mid + 1;                  elif (midVal > key):              # if mid is greater than key, all elements              # in range [mid + 1, high] are also greater             # so we now search in [low, mid - 1]             high = mid - 1;                  elif (midVal == key):              # if mid is equal to key, we note down             #  the last found index then we search              # for more in left side of mid             # so we now search in [low, mid - 1]             ans = mid;             high = mid - 1;      return ans;   # Find last occurrence index of key in array # Returns: an index in range [0, n-1] if key  # belongs to array, #          -1 if key doesn't belong to array  def last(low, high, key):     ans = -1;      while (low <= high):         mid = low + ((high - low + 1) // 2);         midVal = a[mid];          if (midVal < key):              # if mid is less than key, then all elements              # in range [low, mid - 1] are also less             # so we now search in [mid + 1, high]             low = mid + 1;                  elif (midVal > key):              # if mid is greater than key, then all              # elements in range [mid + 1, high] are              # also greater so we now search in              # [low, mid - 1]             high = mid - 1;                  elif (midVal == key):              # if mid is equal to key, we note down              # the last found index then we search              # for more in right side of mid             # so we now search in [mid + 1, high]             ans = mid;             low = mid + 1;          return ans;   # Find index of first occurrence of least element  # greater than key in array # Returns: an index in range [0, n-1] if key is not # the greatest element in array, # -1 if key is the greatest element in array */ def leastgreater(low, high, key):     ans = -1;      while (low <= high):         mid = low + ((high - low + 1) // 2);         midVal = a[mid];          if (midVal < key):              # if mid is less than key, all elements             # in range [low, mid - 1] are <= key             # then we search in right side of mid             # so we now search in [mid + 1, high]             low = mid + 1;                  elif (midVal > key) :              # if mid is greater than key, all elements             # in range [mid + 1, high] are >= key             # we note down the last found index, then              # we search in left side of mid             # so we now search in [low, mid - 1]             ans = mid;             high = mid - 1;                  elif (midVal == key) :              # if mid is equal to key, all elements in             # range [low, mid] are <= key             # so we now search in [mid + 1, high]             low = mid + 1;      return ans;   # Find index of last occurrence of greatest element # less than key in array # Returns: an index in range [0, n-1] if key is not  # the least element in array, # -1 if key is the least element in array */ def greatestlesser(low, high, key):     ans = -1;      while (low <= high):         mid = low + ((high - low + 1) // 2);         midVal = a[mid];          if (midVal < key):              # if mid is less than key, all elements              # in range [low, mid - 1] are < key             # we note down the last found index, then              # we search in right side of mid             # so we now search in [mid + 1, high]             ans = mid;             low = mid + 1;                  elif (midVal > key):              # if mid is greater than key, all elements             # in range [mid + 1, high] are > key             # then we search in left side of mid             # so we now search in [low, mid - 1]             high = mid - 1;                  elif (midVal == key) :              # if mid is equal to key, all elements              # in range [mid + 1, high] are >= key             # then we search in left side of mid             # so we now search in [low, mid - 1]             high = mid - 1;              return ans;   print("Contains");  for i in range(10):     print(i, contains(0, n - 1, i));  print("First occurrence of key"); for i in range(10):     print(i, first(0, n - 1, i));  print("Last occurrence of key"); for i in range(10):     print(i, last(0, n - 1, i));   print("Least integer greater than key"); for i in range(10):     print(i, leastgreater(0, n - 1, i));   print("Greatest integer lesser than key"); for i in range(10):     print(i, greatestlesser(0, n - 1, i));    # This code is contributed by phasing17 
C#
// C# program to variants of Binary Search using System;  class GFG{      // Array size     static int n = 8;   // Sorted array static int[] a = { 2, 3, 3, 5, 5, 5, 6, 6 };   /* Find if key is in array  * Returns: True if key belongs to array,  * False if key doesn't belong to array */ static int contains(int low, int high, int key) {     int ans = 0;     while (low <= high)     {         int mid = low + (high - low) / 2;         int midVal = a[mid];           if (midVal < key)         {                          // If mid is less than key, all elements              // in range [low, mid] are also less             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key)         {                          // If mid is greater than key, all elements             // in range [mid + 1, high] are also greater             // so we now search in [low, mid - 1]             high = mid - 1;         }         else if (midVal == key)         {                          // Comparison added just for the sake              // of clarity if mid is equal to key, we              // have found that key exists in array             ans = 1;             break;         }     }     return ans; }   /* Find first occurrence index of key in array  * Returns: an index in range [0, n-1] if key belongs   *          to array, -1 if key doesn't belong to array  */ static int first(int low, int high, int key) {     int ans = -1;       while (low <= high)      {         int mid = low + (high - low + 1) / 2;         int midVal = a[mid];           if (midVal < key)          {                          // If mid is less than key, all elements             // in range [low, mid] are also less             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key)         {                          // If mid is greater than key, all elements              // in range [mid + 1, high] are also greater             // so we now search in [low, mid - 1]             high = mid - 1;         }         else if (midVal == key)         {                          // If mid is equal to key, we note down             //  the last found index then we search              // for more in left side of mid             // so we now search in [low, mid - 1]             ans = mid;             high = mid - 1;         }     }     return ans; }   /* Find last occurrence index of key in array  * Returns: an index in range [0, n-1] if key               belongs to array, -1 if key doesn't              belong to array  */ static int last(int low, int high, int key) {     int ans = -1;       while (low <= high)     {         int mid = low + (high - low + 1) / 2;         int midVal = a[mid];           if (midVal < key)          {                          // If mid is less than key, then all elements              // in range [low, mid - 1] are also less             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key)         {                          // If mid is greater than key, then all              // elements in range [mid + 1, high] are              // also greater so we now search in              // [low, mid - 1]             high = mid - 1;         }         else if (midVal == key)          {                          // If mid is equal to key, we note down              // the last found index then we search              // for more in right side of mid             // so we now search in [mid + 1, high]             ans = mid;             low = mid + 1;         }     }     return ans; }   /* Find index of first occurrence of least element     greater than key in array  * Returns: an index in range [0, n-1] if key is not              the greatest element in array,  *          -1 if key is the greatest element in array */ static int leastgreater(int low, int high, int key) {     int ans = -1;       while (low <= high)      {         int mid = low + (high - low + 1) / 2;         int midVal = a[mid];           if (midVal < key)          {                          // If mid is less than key, all elements             // in range [low, mid - 1] are <= key             // then we search in right side of mid             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key)         {                          // If mid is greater than key, all elements             // in range [mid + 1, high] are >= key             // we note down the last found index, then              // we search in left side of mid             // so we now search in [low, mid - 1]             ans = mid;             high = mid - 1;         }         else if (midVal == key)         {                          // If mid is equal to key, all elements in             // range [low, mid] are <= key             // so we now search in [mid + 1, high]             low = mid + 1;         }     }     return ans; }   /* Find index of last occurrence of greatest element    less than key in array  * Returns: an index in range [0, n-1] if key is not               the least element in array,  *          -1 if key is the least element in array */ static int greatestlesser(int low, int high, int key) {     int ans = -1;       while (low <= high)     {         int mid = low + (high - low + 1) / 2;         int midVal = a[mid];           if (midVal < key)         {                          // If mid is less than key, all elements              // in range [low, mid - 1] are < key             // we note down the last found index, then              // we search in right side of mid             // so we now search in [mid + 1, high]             ans = mid;             low = mid + 1;         }         else if (midVal > key)          {                          // If mid is greater than key, all elements             // in range [mid + 1, high] are > key             // then we search in left side of mid             // so we now search in [low, mid - 1]             high = mid - 1;         }         else if (midVal == key)         {                          // If mid is equal to key, all elements              // in range [mid + 1, high] are >= key             // then we search in left side of mid             // so we now search in [low, mid - 1]             high = mid - 1;         }     }       return ans; }   // Driver Code static void Main()  {     Console.WriteLine("Contains");     for(int i = 0; i < 10; i++)         Console.WriteLine(i + " " + contains(0, n - 1, i));          Console.WriteLine("First occurrence of key");     for(int i = 0; i < 10; i++)         Console.WriteLine(i + " " + first(0, n - 1, i));          Console.WriteLine("Last occurrence of key");     for(int i = 0; i < 10; i++)         Console.WriteLine(i + " " + last(0, n - 1, i));          Console.WriteLine("Least integer greater than key");     for(int i = 0; i < 10; i++)         Console.WriteLine(i + " " +                            leastgreater(0, n - 1, i));          Console.WriteLine("Greatest integer lesser than key");     for(int i = 0; i < 10; i++)         Console.WriteLine(i + " " +                           greatestlesser(0, n - 1, i)); } }  // This code is contributed by divyesh072019 
JavaScript
// JavaScript program to variants of Binary Search   let n = 8; // array size let a = [ 2, 3, 3, 5, 5, 5, 6, 6 ]; // Sorted array  /* Find if key is in array  * Returns: True if key belongs to array,  *          False if key doesn't belong to array */ function contains(low, high, key) {     let ans = false;     while (low <= high) {         let mid = low + Math.floor((high - low) / 2);         let midVal = a[mid];          if (midVal < key) {              // if mid is less than key, all elements              // in range [low, mid] are also less             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key) {              // if mid is greater than key, all elements             // in range [mid + 1, high] are also greater             // so we now search in [low, mid - 1]             high = mid - 1;         }         else if (midVal == key) {              // comparison added just for the sake              // of clarity if mid is equal to key, we              // have found that key exists in array             ans = true;             break;         }     }      return ans; }  /* Find first occurrence index of key in array  * Returns: an index in range [0, n-1] if key belongs   *          to array, -1 if key doesn't belong to array  */ function first(low, high, key) {     let ans = -1;      while (low <= high) {         let mid = low + Math.floor((high - low + 1) / 2);         let midVal = a[mid];          if (midVal < key) {              // if mid is less than key, all elements             // in range [low, mid] are also less             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key) {              // if mid is greater than key, all elements              // in range [mid + 1, high] are also greater             // so we now search in [low, mid - 1]             high = mid - 1;         }         else if (midVal == key) {              // if mid is equal to key, we note down             //  the last found index then we search              // for more in left side of mid             // so we now search in [low, mid - 1]             ans = mid;             high = mid - 1;         }     }      return ans; }  /* Find last occurrence index of key in array  * Returns: an index in range [0, n-1] if key               belongs to array,  *          -1 if key doesn't belong to array  */ function last(low, high, key) {     let ans = -1;      while (low <= high) {         let mid = low + Math.floor((high - low + 1) / 2);         let midVal = a[mid];          if (midVal < key) {              // if mid is less than key, then all elements              // in range [low, mid - 1] are also less             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key) {              // if mid is greater than key, then all              // elements in range [mid + 1, high] are              // also greater so we now search in              // [low, mid - 1]             high = mid - 1;         }         else if (midVal == key) {              // if mid is equal to key, we note down              // the last found index then we search              // for more in right side of mid             // so we now search in [mid + 1, high]             ans = mid;             low = mid + 1;         }     }      return ans; }  /* Find index of first occurrence of least element     greater than key in array  * Returns: an index in range [0, n-1] if key is not              the greatest element in array,  *          -1 if key is the greatest element in array */ function leastgreater(low, high, key) {     let ans = -1;      while (low <= high) {         let mid = low + Math.floor((high - low + 1) / 2);         let midVal = a[mid];          if (midVal < key) {              // if mid is less than key, all elements             // in range [low, mid - 1] are <= key             // then we search in right side of mid             // so we now search in [mid + 1, high]             low = mid + 1;         }         else if (midVal > key) {              // if mid is greater than key, all elements             // in range [mid + 1, high] are >= key             // we note down the last found index, then              // we search in left side of mid             // so we now search in [low, mid - 1]             ans = mid;             high = mid - 1;         }         else if (midVal == key) {              // if mid is equal to key, all elements in             // range [low, mid] are <= key             // so we now search in [mid + 1, high]             low = mid + 1;         }     }      return ans; }  /* Find index of last occurrence of greatest element    less than key in array  * Returns: an index in range [0, n-1] if key is not               the least element in array,  *          -1 if key is the least element in array */ function greatestlesser(low, high, key) {     let ans = -1;      while (low <= high) {         let mid = low + Math.floor((high - low + 1) / 2);         let midVal = a[mid];          if (midVal < key) {              // if mid is less than key, all elements              // in range [low, mid - 1] are < key             // we note down the last found index, then              // we search in right side of mid             // so we now search in [mid + 1, high]             ans = mid;             low = mid + 1;         }         else if (midVal > key) {              // if mid is greater than key, all elements             // in range [mid + 1, high] are > key             // then we search in left side of mid             // so we now search in [low, mid - 1]             high = mid - 1;         }         else if (midVal == key) {              // if mid is equal to key, all elements              // in range [mid + 1, high] are >= key             // then we search in left side of mid             // so we now search in [low, mid - 1]             high = mid - 1;         }     }      return ans; }  console.log("Contains");  for (var i = 0; i < 10; i++)     console.log(i, contains(0, n - 1, i));  console.log("First occurrence of key"); for (var i = 0; i < 10; i++)     console.log(i, first(0, n - 1, i));  console.log("Last occurrence of key"); for (var i = 0; i < 10; i++)     console.log(i, last(0, n - 1, i));  console.log("Least integer greater than key"); for (var i = 0; i < 10; i++)     console.log(i, leastgreater(0, n - 1, i));  console.log("Greatest integer lesser than key"); for (var i = 0; i < 10; i++)     console.log(i, greatestlesser(0, n - 1, i));    // This code is contributed by phasing17 

Output: 
Contains 0 0 1 0 2 1 3 1 4 0 5 1 6 1 7 0 8 0 9 0 First occurrence of key 0 -1 1 -1 2 0 3 1 4 -1 5 3 6 6 7 -1 8 -1 9 -1 Last occurrence of key 0 -1 1 -1 2 0 3 2 4 -1 5 5 6 7 7 -1 8 -1 9 -1 Least integer greater than key 0 0 1 0 2 1 3 3 4 3 5 6 6 -1 7 -1 8 -1 9 -1 Greatest integer lesser than key 0 -1 1 -1 2 -1 3 0 4 2 5 2 6 5 7 7 8 7 9 7

 

Here is the problem I have mentioned at the beginning of the post: KCOMPRES problem in Codechef. Do try it out and feel free post your queries here.
More Binary Search Practice Problems
 


 


Next Article
Meta Binary Search | One-Sided Binary Search

C

ChandanAkiti
Improve
Article Tags :
  • Searching
  • DSA
  • Binary Search
Practice Tags :
  • Binary Search
  • Searching

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 Search
    Binary 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 Search
    Meta 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 1
    We 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 Search
    Uniform 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 Algorithm
    We 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 Search
    What 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 algorithm
    N-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 Search
    In 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 Search
    Binary 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 Search
    In 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 Java
    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 t
    6 min read
    Binary Search (Recursive and Iterative) - Python
    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). Below is the step-by-step algorithm for Binary Search:D
    6 min read
    Binary Search In JavaScript
    Binary 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 pthread
    Binary 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

    Linear Search vs Binary Search
    Prerequisite: Linear SearchBinary SearchLINEAR SEARCH Assume that item is in an array in random order and we have to find an item. Then the only way to search for a target item is, to begin with, the first position and compare it to the target. If the item is at the same, we will return the position
    11 min read
    Interpolation search vs Binary search
    Interpolation search works better than Binary Search for a Sorted and Uniformly Distributed array. Binary Search goes to the middle element to check irrespective of search-key. On the other hand, Interpolation Search may go to different locations according to search-key. If the value of the search-k
    7 min read
    Why is Binary Search preferred over Ternary Search?
    The following is a simple recursive Binary Search function in C++ taken from here.  C++ // CPP program for the above approach #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 b
    11 min read
    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
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences