Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/erfidev/ds_golang

Data strcutures implemented by go programming language
https://github.com/erfidev/ds_golang

data data-structures go

Last synced: about 5 hours ago
JSON representation

Data strcutures implemented by go programming language

Awesome Lists containing this project

README

        

# ds_golang

---

data structures implemented by golang.

---

## structures

### Linear

- [Double linked list](https://github.com/ErfiDev/ds_golang/blob/main/linear/doublyLinkedList.go)
- [Linked list](https://github.com/ErfiDev/ds_golang/blob/main/linear/linkedList.go)
- [List](https://github.com/ErfiDev/ds_golang/blob/main/linear/list.go)
- [Set](https://github.com/erfidev/ds_golang/blob/main/linear/set.go)
- [Queue](https://github.com/ErfiDev/ds_golang/blob/main/linear/queue.go)
- [Stack](https://github.com/ErfiDev/ds_golang/blob/main/linear/stack.go)

### Non-Linear

- [Tree](https://github.com/ErfiDev/ds_golang/blob/main/non_linear/tree.go)