We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fd51ef commit d534212Copy full SHA for d534212
src/searching/interpolation-search.js
@@ -2,8 +2,9 @@
2
'use strict';
3
/**
4
* Searches for specific element in a given array using
5
- * the jump search algorithm.<br><br>
6
- * Time complexity: O(log N).
+ * the interpolation search algorithm.<br><br>
+ * Time complexity: O(log log N) when elements are uniformly
7
+ * distributed, and O(N) in the worst case
8
*
9
* @example
10
0 commit comments