Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.