From f534b62243e729be9844582a97936f0f9f7d6bf9 Mon Sep 17 00:00:00 2001 From: Maurice Tollmien Date: Sun, 12 Aug 2018 12:22:50 +0200 Subject: [PATCH] Added my own skiplist implementation to the readme (#2032) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 42585994..0947b870 100644 --- a/README.md +++ b/README.md @@ -290,6 +290,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [merkletree](https://github.com/cbergoon/merkletree) - Implementation of a merkle tree providing an efficient and secure verification of the contents of data structures. * [mspm](https://github.com/BlackRabbitt/mspm) - Multi-String Pattern Matching Algorithm for information retrieval. * [roaring](https://github.com/RoaringBitmap/roaring) - Go package implementing compressed bitsets. +* [skiplist](https://github.com/MauriceGit/skiplist) - Very fast Go Skiplist implementation. * [skiplist](https://github.com/gansidui/skiplist) - Skiplist implementation in Go. * [trie](https://github.com/derekparker/trie) - Trie implementation in Go. * [ttlcache](https://github.com/diegobernardes/ttlcache) - In-memory LRU string-interface{} map with expiration for golang.