A2oz

What is a Binary Search Algorithm in Data Structure?

Published in Data Structures 2 mins read

A binary search algorithm is a highly efficient search technique used to find a specific element within a sorted array or list.

How it Works:

  1. Start at the middle: The algorithm begins by examining the middle element of the sorted array.
  2. Compare and narrow: The target value is compared to the middle element.
    • If the target value matches the middle element, the search is successful.
    • If the target value is smaller than the middle element, the search continues in the left half of the array.
    • If the target value is larger than the middle element, the search continues in the right half of the array.
  3. Repeat: Steps 1 and 2 are repeated until the target value is found or the search space is exhausted.

Advantages:

  • Efficiency: Binary search has a time complexity of O(log n), making it significantly faster than linear search (O(n)) for large datasets.
  • Simplicity: The algorithm is easy to understand and implement.

Example:

Imagine you have a sorted array of numbers: [2, 5, 7, 11, 13, 17, 19]. You want to find the number 13.

  1. Start at the middle: The middle element is 11.
  2. Compare and narrow: 13 is greater than 11, so the search continues in the right half of the array: [13, 17, 19].
  3. Repeat: The new middle element is 17. 13 is smaller than 17, so the search continues in the left half: [13].
  4. Found: The target value 13 is found.

Practical Insights:

  • Binary search is commonly used in databases, search engines, and other applications where efficient searching is crucial.
  • It's important to note that binary search only works on sorted data.

Related Articles