|
19 | 19 | * Stack (абстрактный тип данных, представляющий собой список элементов, организованных по принципу LIFO): [example](https://github.com/dreddsa5dies/algorithm/tree/master/stack)
|
20 | 20 | * Queue (абстрактный тип данных, представляющий собой список элементов, организованных по принципу FIFO): [example](https://github.com/dreddsa5dies/algorithm/tree/master/queue)
|
21 | 21 | * binary search tree, BST (Двоичное дерево поиска): [example](https://github.com/dreddsa5dies/algorithm/tree/master/BST)
|
| 22 | +* HEAP (Ку́ча - динамически распределяемая память приложения): [example](https://golang.org/pkg/container/heap/) |
| 23 | +* Doubly linked list (Двунаправленный список): [example](https://golang.org/pkg/container/list/) |
| 24 | +* Circular lists (Круговой связанный список): : [example](https://golang.org/pkg/container/ring/) |
22 | 25 | ## The code contains comments in Russian
|
23 | 26 |
|
24 | 27 | ## License
|
|
0 commit comments