Difference between Sequential Search and Binary Search in Tabular From
Contents
Compare Sequential Search and Binary Search
- The Key Difference between Sequential Search and Binary Search is below table.

Binary Search vs Sequential Search Comparison Chart
Sequential Search | Binary Search |
---|---|
Sequential Search is a simple technique of searching an element. | Binary Search is an efficient technique of searching an element. |
Sequential Search does not require the list to be sorted | Binary Search technique requires the list to be sorted. |
Every element of the list is compared with the key element. | Only the mid element of the list is compared with a key element. |
Algorithm is iterative in nature | Algorithm technique is Divide and Conquer. |
Algorithm is easy to implement. | Algorithm is slightly complex. |
Time complexity: 0(n). | Time complexity: O(log n). |
More Difference
- Difference Between Divide and Conquer and Dynamic Programming
- Difference between Session and Cookies