• Skip to primary navigation
  • Skip to content
  • Skip to primary sidebar
  • Skip to secondary sidebar

GoHired

Interview Questions asked in Google, Microsoft, Amazon

Join WeekEnd Online Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

  • Home
  • Best Java Books
  • Algorithm
  • Internship
  • Certificates
  • About Us
  • Contact Us
  • Privacy Policy
  • Array
  • Stack
  • Queue
  • LinkedList
  • DP
  • Strings
  • Tree
  • Mathametical
  • Puzzles
  • Graph

Implement a generic binary search algorithm for Integer Double String etc

March 20, 2014 by Dhaval Dave

A Simple Binary Search for Integers

BinarySearch(A[0..N-1], value) 
{
   low = 0
   high = N - 1
   while (low <= high) {
       mid = low + ((high - low) / 2)
       if (A[mid] > value)
           high = mid - 1
       else if (A[mid] < value)
           low = mid + 1
       else
           return mid // found
    }//while end
   return -1 // not found
}


To implement  Generic Binary Search

– Comparison must be based upon Data type of Input.
– to get Data type of Input
– sizeof( )
Eg:

#define TYPE(x)(
       sizeof(x) == sizeof(integer) ? return integer:
       sizeof(x) == sizeof(character) ? return char:
       sizeof(x) == sizeof(double)) ? return double :
       )

 

– Make function to compare according to size.

Compare (A[mid] , value)
{
if(TYPE(A[mid] != TYPE(value)) return null;

if ( TYPE( A[mid] == integer ){ 
//Simple comparison and return
}

if ( TYPE( A[mid] == character ){
// Compare with User Defined which function which checks for lexicographic order.
//See Void CompareLexo()
}
 
}//
Compare Void CompareLexo(){ 
//pseudo code to understand logic. 
 const char* string = "Bac"; 
 int c = strcmp(string, "Bca");  //c will be <= -1 
 int c = strcmp(string, "B");  //c will be >=1 
}

The same way you can think for Double , Structure etc Input and create your code.

PS : Please comment/mail us perfect running code or better logic

 

Similar Articles

Filed Under: problem Tagged With: algorithm

Reader Interactions

Primary Sidebar

Join WeekEnd Online/Offline Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

Join WeekEnd Online/Offline Batch from 4-April-2020

WhatsApp us

Secondary Sidebar

Custom Search

  • How I cracked AMAZON
  • LeetCode
  • Adobe
  • Amazon
  • Facebook
  • Microsoft
  • Hacker Earth
  • CSE Interview

Top Rated Questions

Sort Stack in place

Word Break Problem

Connect n ropes with minimum cost

Client Server C program

Cisco Hiring Event 21st – 22nd Feb 2015

1014 Practice Question of New GRE – Princeton

Python Array String

VMWare Openings

Given array of 0’s and 1’s. All 0’s are coming first followed by 1’s. find the position of first 1

Find the kth number with prime factors 3, 5 and 7

Find min element in Sorted Rotated Array (Without Duplicates)

Facebook Interview Question : Interleave List

Count number of ways to reach a given score in a game

Test Cases for Round Function

‘N’ Story Building, with 1,2,3 steps how many ways can a person reach top of building.

Coin Collection Dynamic Programming

Find min element in Sorted Rotated Array (With Duplicates)

Python String and numbers

Templates in C++

Convert Decimal to Roman numbers / Romanizer HackerEarth Code

Maximum difference between two elements s.t larger element appears after the smaller number

Longest Increasing Subsequence

There are N nuts and N bolts, u have to find all the pairs of nuts and bolts in minimum no. of iteration

Length of the longest substring without repeating characters

N Petrol bunks or City arranged in circle. You have Fuel and distance between petrol bunks. Is it possible to find starting point so that we can travel all Petrol Bunks

LeetCode: Container With Most Water

Urban Ladder Written Test.

Difference between a LinkedList and a Binary Search Tree BST

Find shortest distances between every pair of vertices ( Dynamic Programming Floyd Warshall Algorithm)

Printing each word reverse in string

Copyright © 2026 · Genesis Framework · WordPress · Log in