Jump list

From Wikipedia, the free encyclopedia

In computer science, a jump list is a data structure which resembles an ordered doubly linked list. Instead of only next and previous links, several nodes contain links to nodes farther away, with the distance increasing geometrically. This allows the dictionary operations search, insert and delete to be executed in O(3n) time.

[edit] See also

[edit] References