Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/loov/radixsort
Radix sort for Go
https://github.com/loov/radixsort
Last synced: 7 days ago
JSON representation
Radix sort for Go
- Host: GitHub
- URL: https://github.com/loov/radixsort
- Owner: loov
- License: mit
- Created: 2019-09-26T13:38:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-17T21:29:53.000Z (almost 4 years ago)
- Last Synced: 2024-11-08T21:55:15.024Z (2 months ago)
- Language: Go
- Size: 12.7 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# radixsort
`radixsort` package implements radix sorting for `uint`, `uint32` and `uint64`.
The usage looks like:
```go
import "github.com/loov/radixsort"func Example() {
data := []int64{1,2,3,4}
tmpbuf := make([]int64, len(data))radixsort.Uint64(data, tmpbuf)
}
```