"C Binary Search" Code Answer's

You're definitely familiar with the best coding language C++ that developers use to develop their projects and they get all their queries like "C Binary Search" answered properly. Developers are finding an appropriate answer about C Binary Search related to the C++ coding language. By visiting this online portal developers get answers concerning C++ codes question like C Binary Search. Enter your desired code related query in the search bar and get every piece of information about C++ code related question on C Binary Search. 

binary search program c++

By CodeMyFingahCodeMyFingah on Oct 31, 2020
#include <iostream>
using namespace std;

// This program performs a binary search through an array, must be sorted to work
int binarySearch(int array[], int size, int value) 
{   
    int first = 0,         // First array element       
    last = size - 1,       // Last array element       
    middle,                // Mid point of search       
    position = -1;         // Position of search value   
    bool found = false;        // Flag   
    while (!found && first <= last) 
    {      
        middle = (first + last) / 2;     // Calculate mid point      
        if (array[middle] == value)      // If value is found at mid      
    	{         
                found = true;         
                position = middle;      
        }      
        else if (array[middle] > value)  // If value is in lower half         
            last = middle - 1;      
        else         
            first = middle + 1;          // If value is in upper half   
    }   
    return position;
}
int main ()
{
    const int size = 5; // size initialization
    int array[size] = {1, 2, 3, 4, 5}; // declare array of size 10
    int value; // declare value to be searched for
    int result; // declare variable that will be returned after binary search

    cout << "What value would you like to search for? "; // prompt user to enter value
    cin >> value;
    result = binarySearch(array, size, value);

    if (result == -1) // if value isn't found display this message
        cout << "Not found\n";
    else  // If value is found, displays message
        cout << "Your value is in the array.\n"; 
  
    return 0;
}

Add Comment

10

binary search in c

By Attractive AntelopeAttractive Antelope on Dec 19, 2020
//C Implementation
#include<stdio.h>
int BinarySearch(int arr[], int search, int mid, int len){
    if(mid == -1 || mid == len+1){
        printf("\nSearched Element doesn't exist.");
        return 1;
    }
    else if (search > arr[mid]){
        mid++;
        BinarySearch(arr,search,mid,len);
        return 0;
    }
    else if (search < arr[mid]){
        mid--;
        BinarySearch(arr,search,mid,len);
        return 0;
    }
    else if(search == arr[mid]) {
        printf("\n Searched Element found at Location %d.",mid);
        return 1;
    } 
}
void main(){
    int arr[] = {1,2,3,4,5,6,7,8,9};
    int len = sizeof(arr) / sizeof(int);
    int mid = (int) (len / 2) + 1;
    printf("\n Please Enter Number You Want to Search \n >  ");
    int search;
    scanf("%d",&search);
    int Result = BinarySearch(arr,search,mid,len);
}

Add Comment

1

All those coders who are working on the C++ based application and are stuck on C Binary Search can get a collection of related answers to their query. Programmers need to enter their query on C Binary Search related to C++ code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about C Binary Search for the programmers working on C++ code while coding their module. Coders are also allowed to rectify already present answers of C Binary Search while working on the C++ language code. Developers can add up suggestions if they deem fit any other answer relating to "C Binary Search". Visit this developer's friendly online web community, CodeProZone, and get your queries like C Binary Search resolved professionally and stay updated to the latest C++ updates. 

C++ answers related to "C Binary Search"

View All C++ queries

C++ queries related to "C Binary Search"

how to do binary search in c++ using STL binary search tree in cpp using class binary search program c++ binary search stl binary search function in c++ binary search in c++ binary tree search deletion in a binary search tree c++ binary search binary search algorithm binary search tree sorted order c++ binary search lower bound C Binary Search binary search in java Binary Search implementation binary search in c binary search in stl convert binary to decimal c++ stl binary exponentiation binary index tree c++ binary sort c++ binary addition using bitwise operators convert decimal to binary in c++ convert int to binary string c++ binary exponentiation modulo m binary indexed tree c++ display numbers as binary built in function in c++ for binary to decimal write and read string binary file c++ convert long int to binary string c++ print binary in c binary tree deletion how to do decimal to binary converdsion in c++ Decimal to binary c++ top view of binary tree c++ binary heap heap sort heapify and max heap in binary tree decimal to binary predefined function find number of 1s in a binary cv::mat image c++ vector decimal to binary Print Decimal to binary using stack is obje file binary?? how to find the left most bit 1 in binary of any number searching display insert in a binary serach tree how to show c++ binary files in sublime text binary algebra cpp building native binary with il2cpp unity Write a program in C++ to find post-order predecessor of a node in a Binary Tree vertical traversal of binary tree Print Nodes in Top View of Binary Tree search in vector of pairs c++ array search c++ ternary search c++ delete and search edge in adjacency matrix of a graph how to search integer in c++ c++ vector quick search dichotomic search c++ linear search in c bst search linear search

Browse Other Code Languages

CodeProZone