Searching Algorithm Guide

Demystifying Interpolation Search

Upgrade Your Searching Game!

Radian Krisno
Towards Data Science
3 min readAug 13, 2020

--

Prior to this article, I have written about Binary Search. Check it out if you haven’t seen it. In this article, we will be discussing Interpolation Search, which is an improvement of Binary Search when the values in the sorted array are uniformly distributed.

Picture by Lucas Sankey on Unsplash

--

--