Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 315 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 315 Bytes

Having fun sorting in Go.

go run .

pkg/custom3

Partitioning the dataset to run quicksort concurrently on partitions to make quicksort faster.

pkg/custom2

A custom sorting algorithm exploring a seek-ahead strategy.

pkg/custom1

A typical brute force iterative sort with mild optimizations.