https://github.com/askeladdk/toolbox
Useful algorithms and data structures for Go.
https://github.com/askeladdk/toolbox
algorithms data-structures go golang
Last synced: 3 months ago
JSON representation
Useful algorithms and data structures for Go.
- Host: GitHub
- URL: https://github.com/askeladdk/toolbox
- Owner: askeladdk
- Created: 2023-02-22T20:37:13.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-07T07:46:40.000Z (almost 2 years ago)
- Last Synced: 2024-06-21T09:47:41.171Z (almost 2 years ago)
- Topics: algorithms, data-structures, go, golang
- Language: Go
- Homepage:
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Toolbox - algorithms and data structures for Go
## Overview
Package toolbox provides common and useful algorithms and data structures.
| Package | Description
|-------------|------------
| bloom | Efficient and lock-free bloom filter.
| densebits | Dense bit set.
| distinct | Compact distinct set (union find).
| formdata | HTML form data to struct unmarshaler.
| murmurhash3 | MurmurHash3 non-cryptographic hash function.
| queue | Generic queue.
| sparse | Efficient sparse set and map.
| sparsebits | Sparse bit set.
| xheap | Generic heap adapted from container/heap.
| xslices | Algorithms that operate on slices of any type.