MCPcopy Create free account
hub / github.com/BeeBombshell/Python-DSA / interpolation.py

File interpolation.py

Search Algorithms/interpolation.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1def interpolationSearch(arr, lo, hi, x):
2
3 if (lo <= hi and x >= arr[lo] and x <= arr[hi]):
4

Callers

nothing calls this directly

Calls 1

interpolationSearchFunction · 0.85

Tested by

no test coverage detected