Jump search

easy

Slower than binary search, but it never seeks backwards - which matters on tape, on a linked list, or on any paged structure where a backward jump is expensive.

Best O(1)Average O(√n)Worst O(√n)Space O(1)
Loading the jump search engine…

Where to go next