Difference Between Linear Search and Binary Search

Learn via video course
FREE
View all courses
DSA Problem Solving for Interviews using Java
DSA Problem Solving for Interviews using Java
by Jitender Punia
1000
4.9
Start Learning
DSA Problem Solving for Interviews using Java
DSA Problem Solving for Interviews using Java
by Jitender Punia
1000
4.9
Start Learning
Topics Covered

As developers, we should be aware of the basic computer science concept of search algorithms such as linear search and binary search. Finding a given element's occurrence in a list is the process of searching. In this article, we will discuss the difference between linear search and Binary search.

There are two types of searching algorithms

  1. Sequential / Linear Search
  2. Binary Search

What is Linear Search?

A linear search, also called as sequential search, simply scans each element one at a time. In this search, an array is sequentially traversed from the first element until the element is found or the end of the array is reached. This method can only be suitable for searching over a small array or an unsorted array.

Linear-Search

Algorithm

  1. Assume we need to find an element that is in an array in random order.
  2. Start with the first position and compare it to the target in order to search for a target element.
  3. If the current element matches the target element, return the position of the current element.
  4. If not, move on to the next one until we reach the very end of an array.
  5. If still unable to find the target, return -1. 

Syntax in C++

Syntax in Java

Syntax in Python

Complexity Analysis

Time Complexity

  • The Best Case: O(1), when the array's first element is the target element.
  • The Worst Case: O(N) When the array's last element is the target element.

Space Complexity

  • It has a space complexity of O(1).

What is Binary Search?

The Binary search method is only suitable for searching in a sorted array. In this method, the element that has to be searched is compared to the array's middle element. Search is considered successful only if it matches the target. The binary search algorithm uses the divide-and-conquer approach; it does not scan every element in the list; it only searches half of the list instead of going through each element. It is said to be the best searching algorithm because it is faster to execute than linear search.

Binary-Search

Algorithm

  1. Start with the middle element of the array as a current key.
  2. If the middle element value matches the target element then return the index of the middle element.
  3. Otherwise, check if the target element is less than the middle element, and then continue the search in the left half.
  4. If the target element is greater than the middle element, then continue the search in the right half.
  5. Check from the second point repeatedly until the value is found or the array is empty.
  6. If still unable to find the target, return -1.

The Three Cases That are Used in the Binary Search:

Syntax in C++

Syntax in Java

Syntax in Python

Complexity Analysis

Time Complexity

  • The Best Case: O(1), when the array's middle element is the target element.
  • The Worst Case: O(logN) when the array does not have the target element or is far away from the middle element.

Space Complexity

  • It has a space complexity of O(1) for the iterative version.
  • It has space complexity of O(log n) for the recursive version.
Linear SearchBinary Search
Commonly known as sequential search.Commonly known as half-interval search.
Elements are searched in a sequential manner (one by one).Elements are searched using the divide-and-conquer approach.
The elements in the array can be in random order.Elements in the array need to be in sorted order.
Less Complex to implement.More Complex to implement.
Linear search is a slow process.Binary search is comparatively faster.
Single and Multidimensional arrays can be used.Only single dimensional array can be used.
Does not Efficient for larger arrays.Efficient for larger arrays.
The worst-case time complexity is O(n).The worst case time complexity is O(log n).

Explore Scaler Topics Data Structures Tutorial and enhance your DSA skills with Reading Tracks and Challenges.

Conclusion

  • As a developer, you should be aware of the basic computer science concepts of search algorithms, such as linear and binary search.
  • In a linear search, each element in the list is sequentially searched one after the other until it is found in the list.
  • A binary search finds the list’s middle element recursively until the middle element matches a searched element.
  • Linear search can be suitable for searching over an unsorted array.
  • The binary search algorithm uses the divide-and-conquer approach.