gitee.com/quant1x/gox@v1.21.2/util/examples/README.md (about)

     1  # GoDS (Go Data Structures)
     2  
     3  Various examples on how to use data structures.
     4  
     5  ## Examples
     6  
     7  - [ArrayList](https://github.com/emirpasic/gods/blob/master/examples/arraylist/arraylist.go)
     8  - [ArrayStack](https://github.com/emirpasic/gods/blob/master/examples/arraystack/arraystack.go)
     9  - [AVLTree](https://github.com/emirpasic/gods/blob/master/examples/avltree/avltree.go)
    10  - [BinaryHeap](https://github.com/emirpasic/gods/blob/master/examples/binaryheap/binaryheap.go)
    11  - [BTree](https://github.com/emirpasic/gods/blob/master/examples/btree/btree.go)
    12  - [Custom Comparator](https://github.com/emirpasic/gods/blob/master/examples/customcomparator/customcomparator.go)
    13  - [DoublyLinkedList](https://github.com/emirpasic/gods/blob/master/examples/doublylinkedlist/doublylinkedlist.go)
    14  - [EnumerableWithIndex](https://github.com/emirpasic/gods/blob/master/examples/enumerablewithindex/enumerablewithindex.go)
    15  - [EnumerableWithKey](https://github.com/emirpasic/gods/blob/master/examples/enumerablewithkey/enumerablewithkey.go)
    16  - [HashBidiMap](https://github.com/emirpasic/gods/blob/master/examples/hashbidimap/hashbidimap.go)
    17  - [HashMap](https://github.com/emirpasic/gods/blob/master/examples/hashmap/hashmap.go)
    18  - [HashSet](https://github.com/emirpasic/gods/blob/master/examples/hashset/hashset.go)
    19  - [IteratorWithIndex](https://github.com/emirpasic/gods/blob/master/examples/iteratorwithindex/iteratorwithindex.go)
    20  - [iteratorwithkey](https://github.com/emirpasic/gods/blob/master/examples/iteratorwithkey/iteratorwithkey.go)
    21  - [IteratorWithKey](https://github.com/emirpasic/gods/blob/master/examples/linkedliststack/linkedliststack.go)
    22  - [RedBlackTree](https://github.com/emirpasic/gods/blob/master/examples/redblacktree/redblacktree.go)
    23  - [RedBlackTreeExtended](https://github.com/emirpasic/gods/blob/master/examples/redblacktreeextended/redblacktreeextended.go)
    24  - [Serialization](https://github.com/emirpasic/gods/blob/master/examples/serialization/serialization.go)
    25  - [SinglyLinkedList](https://github.com/emirpasic/gods/blob/master/examples/singlylinkedlist/singlylinkedlist.go)
    26  - [Sort](https://github.com/emirpasic/gods/blob/master/examples/sort/sort.go)
    27  - [TreeBidiMap](https://github.com/emirpasic/gods/blob/master/examples/treebidimap/treebidimap.go)
    28  - [TreeMap](https://github.com/emirpasic/gods/blob/master/examples/treemap/treemap.go)
    29  - [TreeSet](https://github.com/emirpasic/gods/blob/master/examples/treeset/treeset.go)