JavaScript实现Interpolation search插值查找算法(附完整源码) interpolationSearch.js完整源代码 interpolationSearch.test.js完整源代码 interpolationSearch.js完整源代码 export default function interpolationSearch(sortedArray, seekElement) { let leftIndex = 0; let rightIndex