Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pavel-durov/skip-list.go

Skip list data structure implementation in go
https://github.com/pavel-durov/skip-list.go

Last synced: 2 days ago
JSON representation

Skip list data structure implementation in go

Awesome Lists containing this project

README

        

# skip-list.go
Skip list data structure implementation in go

Motivation: Simple Synamic Search Data Structure

Dynamic - efficient updates (insert, delete)
Search - finding elements

# Links

- https://en.wikipedia.org/wiki/Skip_list

- https://medium.com/codex/skiplist-in-go-267bb81e51cd

- ?