From 6fff8be4317707e56a81d6e8637bd6397d287db1 Mon Sep 17 00:00:00 2001 From: Igor Mikushkin Date: Wed, 16 Feb 2022 11:12:33 +0400 Subject: [PATCH] add treemap (#4052) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a77b740e..493c9565 100644 --- a/README.md +++ b/README.md @@ -533,6 +533,7 @@ _Generic datastructures and algorithms in Go._ - [slices](https://github.com/srfrog/slices) - Functions that operate on slices; like `package strings` but adapted to work with slices. - [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. +- [treemap](https://github.com/igrmk/treemap) - Generic key-sorted map using a red-black tree under the hood. - [trie](https://github.com/derekparker/trie) - Trie implementation in Go. - [ttlcache](https://github.com/ReneKroon/ttlcache) - In-memory string-interface{} cache with various time-based expiration options and callbacks. - [typ](https://github.com/gurukami/typ) - Null Types, Safe primitive type conversion and fetching value from complex structures.