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

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.

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.