Giter VIP home page Giter VIP logo

array-search's Introduction

PROGRAM TO SEARCH FOR AN ELEMENT IN AN ARRAY

Aim:

This program implements the efficient searching for an element of an array.

Logic Used:

Binary Search

Methods Used In The Program :

  1. Sort_Array

    Since the prerequisite of implementing binary search is a sorted array , the user input array is sorted in ascending order.
    
  2. Binary_Search

    The logic involved in binary search is as follows:

    a) Three variables named beg,mid and end keep track of the beginning,middle and the last element of the array respectively. 
    
    b) The element to be searched is first compared with the middle element of the array.
    
    c) If the element is equal to the middle element return the position of the middle element .
    
    d) Else if the element is greater than mid :
    
         i) The array is virtually shrunk by making beg point to element after mid.
     
    e)Else
    
         i) The array is shrunk this time by making end point to element before mid.
    
    f) This step is repeated till beg equals end .
    

Implementation:

The implementation of this program is done using C language and using the binary search and bubble sort algorithms(for sorting).

Advantages:

Since binary search divides the array into halves everytime , the search method is faster and hence more efficient, unlike the linear search where each element is compared and checked everytime.

array-search's People

Contributors

karthiksenthil avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.