Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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)
}
```