Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/erfidev/ds_golang
- Owner: ErfiDev
- License: mit
- Created: 2023-01-27T18:09:34.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-02T10:05:24.000Z (over 1 year ago)
- Last Synced: 2024-06-21T19:07:11.694Z (5 months ago)
- Topics: data, data-structures, go
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)