diff options
| -rw-r--r-- | README | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ Complexity: n = number of elements in target list m = number of elements to locate - Time complexity: O(S(n) + m) + Time complexity: O(m S(n/m) + m) S = time complexity function of underlying search algorithm, e.g. S(n) = O(log n) in average case for binary search given O(1) comparison. |
