https://github.com/lucasmcclean/dsa-go
A collection of data structures and algorithms implemented in Go.
https://github.com/lucasmcclean/dsa-go
algorithms data-structures data-structures-and-algorithms dsa go golang
Last synced: 4 months ago
JSON representation
A collection of data structures and algorithms implemented in Go.
- Host: GitHub
- URL: https://github.com/lucasmcclean/dsa-go
- Owner: lucasmcclean
- Created: 2024-06-23T14:01:17.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-08T14:36:53.000Z (over 1 year ago)
- Last Synced: 2024-12-28T19:49:39.908Z (about 1 year ago)
- Topics: algorithms, data-structures, data-structures-and-algorithms, dsa, go, golang
- Language: Go
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures & Algorithms in Go
I've implemented (and reimplemented) several data structures and algorithms in Go
with the purpose of gaining a deeper understanding of both DSA and Go itself.
Included are basic data structures such as a heap and stack implementation and some
algorithms including quicksort. Quicksort in particular, I spent several days
experimenting with running in paralell to better understand its functionality, Go's
method of concurrent execution, and paralell execution in general.