Skip to content

Skip list is a data structure that allows fast search within an ordered sequence of elements. Fast search is made possible by maintaining a linked hierarchy of subsequences, with each successive sub-sequence skipping over fewer elements than the previous one.

Notifications You must be signed in to change notification settings

Bilalkhanten/Skip-List-Generic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Skip-List-Generic

Generic skip list implemented in c++ and very efficient mixture of array plus nodes.

About

Skip list is a data structure that allows fast search within an ordered sequence of elements. Fast search is made possible by maintaining a linked hierarchy of subsequences, with each successive sub-sequence skipping over fewer elements than the previous one.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages