https://github.com/dnutiu/dsa-go
A repository containing various data structures and algorithms implemented in Golang
https://github.com/dnutiu/dsa-go
Last synced: 4 months ago
JSON representation
A repository containing various data structures and algorithms implemented in Golang
- Host: GitHub
- URL: https://github.com/dnutiu/dsa-go
- Owner: dnutiu
- Created: 2024-08-06T09:25:55.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-27T21:46:39.000Z (over 1 year ago)
- Last Synced: 2025-02-18T00:05:38.761Z (over 1 year ago)
- Language: Go
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Data Structures and Algorithms
This repository is my self study guide for data structures and algorithms. I implement them from scratch in Go
and then write unit test for them.
What better way to learn a language and new concepts exists other than practicing them.
## Data Structures
* Hash Set [[Implementation](https://github.com/dnutiu/dsa-go/blob/master/hash_set/hash_set/hash_set.go)] | [[Tests](https://github.com/dnutiu/dsa-go/blob/master/hash_set/hash_set/hash_set_test.go)]
* Generic Stack [[Implementation](https://github.com/dnutiu/dsa-go/blob/master/stack/stack.go)] | [[Tests](https://github.com/dnutiu/dsa-go/blob/master/stack/stack_test.go)]
### Other
I also maintain a DSA repo for Java & Kotlin, which you can find [here](https://github.com/dnutiu/dsa)