# README
algorithm 算法包
数据结构包 ./data_structure
- HashSet (set/hashset.go[stringset.go]) author: @TheSevenSky
- 二叉树 (binary_tree.go) author: @TheSevenSky
- 链表 (linked_list.go) author: @TheSevenSky
- 优先队列 (priority_queue.go) author: @zk-kiger
- 队列 (queue.go) author: @TheSevenSky
- 栈 (stack.go) author: @TheSevenSky
算法库
- 并查集 (union_find.go) author: @TheSevenSky
# Functions
NewUnionFind 构造函数 参数是一个interface的切片比如传入一个字符串切片 []interface{}{"hello", "world", "golang"}.