What is the time complexity of interpolation search?

Searching Algorithms Questions Medium



24 Short 58 Medium 71 Long Answer Questions Question Index

What is the time complexity of interpolation search?

The time complexity of interpolation search is O(log log n) on average, where n is the size of the array being searched. However, in the worst case scenario, the time complexity can be O(n), making it less efficient than other searching algorithms such as binary search.