Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teleivo/skeleton
A data structures and algorithms library written in Go
https://github.com/teleivo/skeleton
algorithms algorithms-and-data-structures data-structures go golang
Last synced: about 8 hours ago
JSON representation
A data structures and algorithms library written in Go
- Host: GitHub
- URL: https://github.com/teleivo/skeleton
- Owner: teleivo
- License: gpl-3.0
- Created: 2024-07-16T05:10:45.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-09T15:55:13.000Z (3 months ago)
- Last Synced: 2024-08-09T17:40:46.142Z (3 months ago)
- Topics: algorithms, algorithms-and-data-structures, data-structures, go, golang
- Language: Go
- Homepage:
- Size: 83 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Skeleton
A data structures and algorithms library written in Go.
## Install
```sh
go get -u github.com/teleivo/skeleton
```## Examples
* [frequency](./examples/frequency/main.go) - word frequency counter using an ordered map based on a
left-leaning red-black binary search tree. This problem does not need an ordered map, I just used
it as an example of its API.## Disclaimer
I wrote this library for my personal projects. It is thus tailored to my needs. Feel free to use it!
That being said, my intention is not to adjust it to someone elses liking.