From f58d3926bae5dd0fd17f56f6b066661410c20de3 Mon Sep 17 00:00:00 2001 From: Apollo Li Date: Thu, 3 May 2018 05:55:04 -0700 Subject: [PATCH] Add a go algorithms repo (#1886) Add a go algorithms repo, including tree(bst, btree, vEB-tree...), heap(binary heap, leftist heap, fibonacci heap...), sort, hashmap, graph(more content will be soon) ... --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index feac1562..23777d17 100644 --- a/README.md +++ b/README.md @@ -252,7 +252,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a ## Data Structures *Generic datastructures and algorithms in Go.* - +* [algorithms](https://github.com/shady831213/algorithms) - Algorithms and dat structures.CLRS study. * [binpacker](https://github.com/zhuangsirui/binpacker) - Binary packer and unpacker helps user build custom binary stream. * [bit](https://github.com/yourbasic/bit) - Golang set data structure with bonus bit-twiddling functions. * [bitset](https://github.com/willf/bitset) - Go package implementing bitsets.