From c5d776e8d961e1d5d45e1ce6eb276679d5bcf01e Mon Sep 17 00:00:00 2001 From: rameshvk Date: Fri, 5 Apr 2019 02:48:03 -0700 Subject: [PATCH] Add treap (#2457) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 385afa3c..3668d54e 100644 --- a/README.md +++ b/README.md @@ -343,6 +343,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [skiplist](https://github.com/MauriceGit/skiplist) - Very fast Go Skiplist implementation. * [skiplist](https://github.com/gansidui/skiplist) - Skiplist implementation in Go. * [timedmap](https://github.com/zekroTJA/timedmap) - Map with expiring key-value pairs. +* [treap](https://github.com/perdata/treap) - Persistent, fast ordered map using tree heaps. * [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. * [willf/bloom](https://github.com/willf/bloom) - Go package implementing Bloom filters.