English

Searching in Data Structure

Advertisements
  • Introduction to searching 
  • Linear search 
  • Binary search

Searching

To find any record (maybe data item) matching the specific criteria in a group of items or list is called searching. For searching various algorithms are available: 

a) Linear searching b) Binary searching

Linear Searching 

If 'N' items are given and you want to find whether item is present in group of items or not this is used. This is the simplest approach, where every data item is compared with the item to be found. Here, there is no prerequisite condition for the list to be sorted. 

Binary Searching 

This approach only works on lists which are sorted in increasing order numerically.   

Procedure is as follows   

  1. Calculate position of mid-point
  2. Compare the value of mid-point element with the number. If desired value is less than the value of mid-point element, then reduce the search in second half considering midpoint of the interval. 
  3. Repeat the search if interval is not empty.
  4. On successful search, position is printed.

To narrow down search, binary search is used. The complexity is measured by the number of f(n) of comparisons to locate ITEM in DATA where DATA contains n elements. Each comparison reduces sample size in half. So we require at most f(n) comparisons to locate ITEM where f (n) = [log2n]+1. 

Applications & Limitations 

This algorithm is used to search ordered array. To find out the target element whether it is present or not. If present; then correspondingly give position in the array. 

It’s limitations include that the given list must be sorted.

If you would like to contribute notes or other learning material, please submit them using the button below.

Video Tutorials

We have provided more than 1 series of video tutorials for some topics to help you get a better understanding of the topic.

Series 1


Series 2


Shaalaa.com | Binary Files | Read, Write Methods

Shaalaa.com


Next video


Shaalaa.com


Binary Files | Read, Write Methods [00:13:10]
S
Series: 1
0%


Advertisements
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×